Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 469 for linkers (0.36 sec)

  1. platforms/native/language-native/src/integTest/groovy/org/gradle/language/fixtures/app/DuplicateObjectiveCBaseNamesTestApp.groovy

                        if (targetPlatform.operatingSystem.macOsX) {
                            linker.args "-framework", "Foundation"
                        } else {
                            objcCompiler.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: Thu Nov 16 20:20:03 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/toolchain/CommonToolChainIntegrationTest.groovy

                    def librarySearchPath = 'build/libs/hello/static'
                    def libraryName = 'hello'
                    if (toolChain in VisualCpp) {
                        linker.args "/LIBPATH:\${librarySearchPath}", "\${libraryName}.lib"
                    } else {
                        linker.args "-L\${librarySearchPath}", "-l\${libraryName}"
                    }
                }
            }
            hello(NativeLibrarySpec)
        }
    }
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/initialization/CompositeInitScriptFinder.java

    public class CompositeInitScriptFinder implements InitScriptFinder {
        private final List<InitScriptFinder> finders;
    
        public CompositeInitScriptFinder(InitScriptFinder...finders) {
            this.finders = Arrays.asList(finders);
        }
    
        @Override
        public void findScripts(Collection<File> scripts) {
            for (InitScriptFinder finder : finders) {
                finder.findScripts(scripts);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/toolchain/CommonToolchainCustomizationIntegTest.groovy

                    }
                    linker.withArguments { args ->
                        args.remove "CUSTOM"
                    }
                }
            }
        }
        components {
            main(NativeExecutableSpec) {
                binaries.all {
                    cppCompiler.args "CUSTOM"
                    linker.args "CUSTOM"
                }
            }
        }
    }
            """
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/gc.go

    	// tool being run, for use by content-based staleness determination.
    	if root.Package.Goroot && strings.HasPrefix(root.Package.ImportPath, "cmd/") {
    		// External linking will include our build id in the external
    		// linker's build id, which will cause our build id to not
    		// match the next time the tool is built.
    		// Rely on the external build id instead.
    		if !platform.MustLinkExternal(cfg.Goos, cfg.Goarch, false) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
  6. common/config/.golangci-format.yml

    # "make update-common".
    
    run:
      # Timeout for analysis, e.g. 30s, 5m.
      # Default: 1m
      timeout: 20m
      build-tags:
      - integ
      - integfuzz
    linters:
      disable-all: true
      enable:
      - goimports
      - gofumpt
      - gci
      fast: false
    linters-settings:
      gci:
        sections:
          - standard # Captures all standard packages if they do not match another section.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 03:02:37 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/LinkExeLinkerTest.groovy

        @Rule
        TestNameTestDirectoryProvider tmpDir = new TestNameTestDirectoryProvider(getClass())
        def argsTransformer = new LinkExeLinker.LinkerArgsTransformer()
    
        def "generates linker args for shared library"() {
            def dllFile = tmpDir.file("dll/out.dll")
            def libFile = tmpDir.file("import/out.lib")
            def objFile = tmpDir.file("obj/in.obj")
            def libInFile = tmpDir.file("libs/in.lib")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/target-platforms/groovy/build.gradle

    // tag::targetplatforms[]
    model {
        toolChains {
            gcc(Gcc) {
                target("arm"){
                    cppCompiler.withArguments { args ->
                        args << "-m32"
                    }
                    linker.withArguments { args ->
                        args << "-m32"
                    }
                }
                target("sparc")
            }
        }
        platforms {
            arm {
                architecture "arm"
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 688 bytes
    - Viewed (0)
  9. src/runtime/debuglog_test.go

    // linker dead-code elimination to drop it. This is easy for dlog()
    // since there won't be any calls to it. For printDebugLog, we can
    // make panic call a wrapper that is call printDebugLog if the
    // debuglog build tag is set, or otherwise do nothing. Then tests
    // could call printDebugLog directly. This is the right answer in
    // principle, but currently our linker reads in all symbols
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 18 16:59:26 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  10. test/fixedbugs/bug472.go

    // rundir
    
    // Copyright 2013 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.
    
    // Linker would incorrectly parse export data and think
    // definitions are inconsistent.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 277 bytes
    - Viewed (0)
Back to top