Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 599 for linknew (0.14 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/build.gradle

                    cppCompiler.args '-pthread'
                    linker.args '-pthread'
    
                    if (toolChain instanceof Gcc || toolChain instanceof Clang) {
                        // Use C++03 with the old ABIs, as this is what the googletest binaries were built with
                        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: Mon Nov 27 17:53:42 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/test_ppc64le_cgo_inline_plt.txt

    # Verify the linker will correctly resolve
    # ppc64le objects compiled with gcc's -fno-plt
    # option. This inlines PLT calls, and generates
    # additional reloc types which the internal linker
    # should handle.
    #
    # Verifies golang.org/issue/53345
    #
    # Note, older gcc/clang may accept this option, but
    # ignore it if binutils does not support the relocs.
    [!compiler:gc] skip
    [!cgo] skip
    [!GOARCH:ppc64le] skip
    
    env CGO_CFLAGS='-fno-plt -O2 -g'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 719 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/cgo_suspect_flag_force_external.txt

    [short] skip
    
    # In the remaining tests below we do actual builds (without -n) to
    # verify that the Go linker is going the right thing in addition to the
    # Go command. Here the idea is to pass "-tmpdir" to the linker, then
    # check after the link is done for the presence of the file
    # <tmpdir>/go.o, which the Go linker creates prior to kicking off the
    # external linker.
    
    mkdir tmp1
    mkdir tmp2
    mkdir tmp3
    mkdir tmp4
    mkdir tmp5
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 25 18:16:01 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/DefaultVisualCppPlatformToolChain.java

            tools.put(ToolType.CPP_COMPILER, instantiator.newInstance(DefaultCommandLineToolConfiguration.class, ToolType.CPP_COMPILER));
            tools.put(ToolType.LINKER, instantiator.newInstance(DefaultCommandLineToolConfiguration.class, ToolType.LINKER));
            tools.put(ToolType.STATIC_LIB_ARCHIVER, instantiator.newInstance(DefaultCommandLineToolConfiguration.class, ToolType.STATIC_LIB_ARCHIVER));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/security.go

    // Checking of compiler and linker flags.
    // We must avoid flags like -fplugin=, which can allow
    // arbitrary code execution during the build.
    // Do not make changes here without carefully
    // considering the implications.
    // (That's why the code is isolated in a file named security.go.)
    //
    // Note that -Wl,foo means split foo on commas and pass to
    // the linker, so that -Wl,-foo,bar means pass -foo bar to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/toolchain/GccToolChainDiscoveryIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache
        def "fails when required linker tool is not available but language tool is available"() {
            when:
            buildFile << """
    model {
        toolChains {
            ${toolChain.id} {
                eachPlatform {
                    linker.executable = 'does-not-exist'
                }
            }
        }
    }
    """
            fails "mainExecutable"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  7. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/PropertyTableRenderer.java

            tr.appendChild(td);
            td.appendChild(document.createTextNode("Description"));
    
            for (PropertyDoc propDoc : properties) {
                // <tr>
                //   <td><link linkend="$id"><literal>$name</literal></link</td>
                //   <td>$description</td>
                // </tr>
                tr = document.createElement("tr");
                parent.appendChild(tr);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 3.1K bytes
    - Viewed (0)
  8. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/BlockTableRenderer.java

            tr.appendChild(td);
            td.appendChild(document.createTextNode("Description"));
    
            for (BlockDoc blockDoc : blocks) {
                // <tr>
                //   <td><link linkend="$id"><literal>$name</literal></link</td>
                //   <td>$description</td>
                // </tr>
                tr = document.createElement("tr");
                parent.appendChild(tr);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 2.8K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/build_cache_link.txt

    [short] skip
    
    # Set up fresh GOCACHE.
    env GOCACHE=$WORK/gocache
    mkdir $GOCACHE
    
    # Building a main package should run the compiler and linker ...
    go build -o $devnull -x main.go
    stderr '(compile|gccgo)( |\.exe).*main\.go'
    stderr '(link|gccgo)( |\.exe)'
    
    # ... and then the linker again ...
    go build -o $devnull -x main.go
    ! stderr '(compile|gccgo)( |\.exe).*main\.go'
    stderr '(link|gccgo)( |\.exe)'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 21:00:48 UTC 2019
    - 644 bytes
    - Viewed (0)
  10. src/cmd/compile/internal/base/link.go

    // license that can be found in the LICENSE file.
    
    package base
    
    import (
    	"cmd/internal/obj"
    )
    
    // ReservedImports are import paths used internally for generated
    // symbols by the compiler.
    //
    // The linker uses the magic symbol prefixes "go:" and "type:".
    // Avoid potential confusion between import paths and symbols
    // by rejecting these reserved imports for now. Also, people
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 11:28:56 UTC 2022
    - 1.6K bytes
    - Viewed (0)
Back to top