Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for dylib (0.2 sec)

  1. src/runtime/sys_darwin.go

    //go:cgo_import_dynamic libc_pthread_kill pthread_kill "/usr/lib/libSystem.B.dylib"
    //go:cgo_import_dynamic libc_exit _exit "/usr/lib/libSystem.B.dylib"
    //go:cgo_import_dynamic libc_raise raise "/usr/lib/libSystem.B.dylib"
    
    //go:cgo_import_dynamic libc_open open "/usr/lib/libSystem.B.dylib"
    //go:cgo_import_dynamic libc_close close "/usr/lib/libSystem.B.dylib"
    //go:cgo_import_dynamic libc_read read "/usr/lib/libSystem.B.dylib"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/runtimeshaded/RuntimeShadedJarCreatorTest.groovy

            def jarFile5 = inputFilesDir.file('lib5.jar')
            createJarFileWithResources(jarFile5, [
                'org/gradle/reporting/report.js',
                'net/rubygrapefruit/platform/osx-i386/libnative-platform.dylib',
                'org/joda/time/tz/data/Africa/Abidjan'])
            def jarFile6 = inputFilesDir.file('lib6.jar')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:49 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/security.go

    	re(`-Wl,--(no-)?warn-([^,]+)`),
    	re(`-Wl,-?-wrap[=,][^,@\-][^,]*`),
    	re(`-Wl(,-z,(relro|now|(no)?execstack))+`),
    
    	re(`[a-zA-Z0-9_/].*\.(a|o|obj|dll|dylib|so|tbd)`), // direct linker inputs: x.o or libfoo.so (but not -foo.o or @foo.o)
    	re(`\./.*\.(a|o|obj|dll|dylib|so|tbd)`),
    }
    
    var validLinkerFlagsWithNextArg = []string{
    	"-arch",
    	"-F",
    	"-l",
    	"-L",
    	"-framework",
    	"-isysroot",
    	"--sysroot",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  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)
Back to top