Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 537 for linknew (0.21 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/impl/DirectorySnapshotterTest.groovy

            relativePaths == [
                "in1", "in1/linked",
                "in1/linked/in2", "in1/linked/in2/some", "in1/linked/in2/some/dir", "in1/linked/in2/some/dir/file.txt",
                "in1/linked/other", "in1/linked/other/linked3",
                "in1/linked/other/linked3/another", "in1/linked/other/linked3/another/fileLink",
                "in1/linked/other/linked3/in3", "in1/linked/other/linked3/in3/my", "in1/linked/other/linked3/in3/my/file.txt",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/linkname.txt

    env GO111MODULE=off
    
    # check for linker name in error message about linker crash
    [!compiler:gc] skip
    ! go build -ldflags=-crash_for_testing x.go
    stderr [\\/]tool[\\/].*[\\/]link
    
    -- x.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 219 bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/GccLinkerTest.groovy

        BuildOperationExecutor buildOperationExecutor = Mock(BuildOperationExecutor)
        BuildOperationQueue queue = Mock(BuildOperationQueue)
        WorkerLeaseService workerLeaseService = new TestWorkerLeaseService()
    
        GccLinker linker = new GccLinker(buildOperationExecutor, commandLineTool, invocationContext, false, workerLeaseService)
    
        def "links all object files in a single execution"() {
            given:
            def testDir = tmpDirProvider.testDirectory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents/build.gradle

                if (targetPlatform.operatingSystem.linux) {
                    cppCompiler.args '-pthread'
                    linker.args '-pthread'
                }
            }
            all {
                if (toolChain instanceof Gcc) {
                    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: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top