Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 72 for mylib (0.04 sec)

  1. src/cmd/link/internal/ld/macho.go

    	// beginning of the output file.
    	loadBudget -= (len(lib)+7)/8*8 + 24
    
    	if loadBudget < 0 {
    		HEADR += 4096
    		*FlagTextAddr += 4096
    		loadBudget += 4096
    	}
    
    	dylib = append(dylib, lib)
    }
    
    func machoshbits(ctxt *Link, mseg *MachoSeg, sect *sym.Section, segname string) {
    	buf := "__" + strings.Replace(sect.Name[1:], ".", "_", -1)
    
    	msect := newMachoSect(mseg, buf, segname)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  2. src/syscall/syscall_darwin.go

    	n = int(r0)
    	if e1 != 0 {
    		err = e1
    	}
    	return
    }
    
    func libc_getfsstat_trampoline()
    
    //go:cgo_import_dynamic libc_getfsstat getfsstat "/usr/lib/libSystem.B.dylib"
    
    // utimensat should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/tetratelabs/wazero
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/security_test.go

    	{"-Wl,-R", "foo"},
    	{"-Wl,-R,foo"},
    	{"-Wl,--just-symbols=foo"},
    	{"-Wl,--just-symbols,foo"},
    	{"-Wl,--warn-error"},
    	{"-Wl,--no-warn-error"},
    	{"foo.so"},
    	{"_世界.dll"},
    	{"./x.o"},
    	{"libcgosotest.dylib"},
    	{"-F", "framework"},
    	{"-l", "."},
    	{"-l", "/etc/passwd"},
    	{"-l", "世界"},
    	{"-L", "framework"},
    	{"-framework", "Chocolate"},
    	{"-v"},
    	{"-Wl,-sectcreate,__TEXT,__info_plist,${SRCDIR}/Info.plist"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  4. src/crypto/x509/internal/macos/corefoundation.go

    // license that can be found in the LICENSE file.
    
    //go:build darwin
    
    // Package macOS provides cgo-less wrappers for Core Foundation and
    // Security.framework, similarly to how package syscall provides access to
    // libSystem.dylib.
    package macOS
    
    import (
    	"bytes"
    	"errors"
    	"internal/abi"
    	"runtime"
    	"time"
    	"unsafe"
    )
    
    // Core Foundation linker flags for the external linker. See Issue 42459.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 21 20:05:17 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/PrebuiltLibrariesIntegrationTest.groovy

                                sharedLibraryLinkFile = file("\${baseDir}/hello.lib")
                            }
                        } else if (os.macOsX) {
                            sharedLibraryFile = file("\${baseDir}/libhello.dylib")
                        } else {
                            sharedLibraryFile = file("\${baseDir}/libhello.so")
                        }
                    }
                }
            }
        }
        components {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/os/OperatingSystem.java

            }
    
            @Override
            public String getFamilyName() {
                return "os x";
            }
    
            @Override
            public String getSharedLibrarySuffix() {
                return ".dylib";
            }
    
            @Override
            public String getNativePrefix() {
                return "darwin";
            }
        }
    
        static class Linux extends Unix {
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  7. src/syscall/mksyscall.pl

    			# Tell the linker that funcname can be found in libSystem using varname without the libc_ prefix.
    			my $basename = substr $funcname, 5;
    			my $libc = "libc.so";
    			if ($darwin) {
    				$libc = "/usr/lib/libSystem.B.dylib";
    			}
    			$text .= "//go:cgo_import_dynamic $funcname $basename \"$libc\"\n\n";
    		}
    	}
    }
    
    chomp $text;
    chomp $text;
    
    if($errors) {
    	exit 1;
    }
    
    if($extraimports ne "") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:15:02 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. tensorflow/BUILD

    # as a workaround for https://github.com/tensorflow/tensorflow/issues/34117
    cc_import(
        name = "libtensorflow_framework_import_lib",
        shared_library = select({
            "//tensorflow:macos": ":libtensorflow_framework.dylib",
            "//conditions:default": ":libtensorflow_framework.so.%s" % VERSION_MAJOR,
        }),
    )
    
    # -------------------------------------------
    # New rules should be added above this target.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/native/cpp_library_plugin.adoc

    link:{groovyDslPath}/org.gradle.nativeplatform.tasks.LinkSharedLibrary.html#org.gradle.nativeplatform.tasks.LinkSharedLibrary:linkedFile[linkedFile]:: `layout.buildDirectory.dir("lib/main/__$variant__/libBaseName[.so|dylib]")` (*nix) or `layout.buildDirectory.dir("lib\main{backslash}__$variant__\baseName.dll")` (Windows)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/native/swift_library_plugin.adoc

    link:{groovyDslPath}/org.gradle.nativeplatform.tasks.LinkSharedLibrary.html#org.gradle.nativeplatform.tasks.LinkSharedLibrary:linkedFile[linkedFile]:: `layout.buildDirectory.dir("lib/main/__$variant__/libModule[.so|dylib]")`
    
    link:{groovyDslPath}/org.gradle.nativeplatform.tasks.LinkSharedLibrary.html#org.gradle.nativeplatform.tasks.LinkSharedLibrary:linkerArgs[linkerArgs]:: []
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 17.5K bytes
    - Viewed (0)
Back to top