Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 429 for linknew (0.15 sec)

  1. 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)
  2. platforms/documentation/docs/src/snippets/native-binaries/objective-c/groovy/build.gradle

                if (targetPlatform.operatingSystem.macOsX) {
                    linker.args "-framework", "Foundation"
                } else {
                    objcCompiler.args "-I/usr/include/GNUstep", "-fconstant-string-class=NSConstantString", "-D_NATIVE_OBJC_EXCEPTIONS"
                    linker.args "-lgnustep-base", "-lobjc"
                }
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 703 bytes
    - Viewed (0)
  3. src/internal/platform/supported.go

    				return true
    			}
    		}
    
    		switch goos {
    		case "android":
    			return true
    		case "dragonfly":
    			// It seems that on Dragonfly thread local storage is
    			// set up by the dynamic linker, so internal cgo linking
    			// doesn't work. Test case is "go test runtime/cgo".
    			return true
    		}
    	}
    
    	switch goos {
    	case "android":
    		if goarch != "arm64" {
    			return true
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:50:22 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. src/go/doc/comment/testdata_test.go

    			dumpNL(out, indent+1)
    			fmt.Fprintf(out, "Links")
    			dumpTo(out, indent+2, x.Links)
    		}
    		fmt.Fprintf(out, "\n")
    
    	case []*LinkDef:
    		for _, def := range x {
    			dumpNL(out, indent)
    			dumpTo(out, indent, def)
    		}
    
    	case *LinkDef:
    		fmt.Fprintf(out, "LinkDef Used:%v Text:%q URL:%s", x.Used, x.Text, x.URL)
    
    	case []Block:
    		for _, blk := range x {
    			dumpNL(out, indent)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/ToolType.java

        OBJECTIVECPP_COMPILER("Objective-C++ compiler"),
        OBJECTIVEC_COMPILER("Objective-C compiler"),
        WINDOW_RESOURCES_COMPILER("Windows resources compiler"),
        ASSEMBLER("Assembler"),
        LINKER("Linker"),
        STATIC_LIB_ARCHIVER("Static library archiver"),
        SWIFT_COMPILER("Swift compiler"),
        SYMBOL_EXTRACTOR("Symbol extractor"),
        STRIPPER("Stripper");
    
        private final String toolName;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. src/cmd/link/internal/amd64/asm.go

    			// prepared in the 'reloc' phase and passed to the
    			// external linker in the 'asmb' phase.
    			if ldr.SymType(s) != sym.SDATA && ldr.SymType(s) != sym.SRODATA {
    				break
    			}
    		}
    
    		if target.IsElf() {
    			// Generate R_X86_64_RELATIVE relocations for best
    			// efficiency in the dynamic linker.
    			//
    			// As noted above, symbol addresses have not been
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 21K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/integTest/groovy/org/gradle/language/c/CLanguageIntegrationTest.groovy

                                linker.args '/MANIFESTUAC:level=\\'asInvoker\\' uiAccess=\\'false\\''
                            } else if (toolChain in Clang) {
                                cCompiler.args '-frandom-seed="here is the \\'random\\' seed"'
                                // TODO:DAZ Find something that works here (for all our CI machines)
                                // linker.args '-Wl,-client_name,"a \\'client\\' name"'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top