Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 274 for lchflags (0.18 sec)

  1. src/syscall/zsysnum_freebsd_riscv64.go

    	SYS_ACCESS                   = 33  // { int access(char *path, int amode); }
    	SYS_CHFLAGS                  = 34  // { int chflags(const char *path, u_long flags); }
    	SYS_FCHFLAGS                 = 35  // { int fchflags(int fd, u_long flags); }
    	SYS_SYNC                     = 36  // { int sync(void); }
    	SYS_KILL                     = 37  // { int kill(int pid, int signum); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 22:39:46 UTC 2022
    - 35.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm64.go

    	SYS_ACCESS                   = 33  // { int access(char *path, int amode); }
    	SYS_CHFLAGS                  = 34  // { int chflags(const char *path, u_long flags); }
    	SYS_FCHFLAGS                 = 35  // { int fchflags(int fd, u_long flags); }
    	SYS_SYNC                     = 36  // { int sync(void); }
    	SYS_KILL                     = 37  // { int kill(int pid, int signum); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go

    	SYS_ACCESS                   = 33  // { int access(char *path, int amode); }
    	SYS_CHFLAGS                  = 34  // { int chflags(const char *path, u_long flags); }
    	SYS_FCHFLAGS                 = 35  // { int fchflags(int fd, u_long flags); }
    	SYS_SYNC                     = 36  // { int sync(void); }
    	SYS_KILL                     = 37  // { int kill(int pid, int signum); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_riscv64.go

    	SYS_ACCESS                   = 33  // { int access(char *path, int amode); }
    	SYS_CHFLAGS                  = 34  // { int chflags(const char *path, u_long flags); }
    	SYS_FCHFLAGS                 = 35  // { int fchflags(int fd, u_long flags); }
    	SYS_SYNC                     = 36  // { int sync(void); }
    	SYS_KILL                     = 37  // { int kill(int pid, int signum); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  5. src/syscall/zsysnum_freebsd_arm64.go

    	SYS_ACCESS                   = 33  // { int access(char *path, int amode); }
    	SYS_CHFLAGS                  = 34  // { int chflags(const char *path, u_long flags); }
    	SYS_FCHFLAGS                 = 35  // { int fchflags(int fd, u_long flags); }
    	SYS_SYNC                     = 36  // { int sync(void); }
    	SYS_KILL                     = 37  // { int kill(int pid, int signum); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 35.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/exec.go

    			// -static -pie doesn't make sense, and causes link errors.
    			// Issue 26197.
    			n := make([]string, 0, len(ldflags)-1)
    			for _, flag := range ldflags {
    				if flag != "-static" {
    					n = append(n, flag)
    				}
    			}
    			ldflags = n
    		}
    	}
    	if err := b.gccld(a, objdir, dynobj, ldflags, linkobj); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/gcflags_patterns.txt

    ! go build '-ldflags="-X main.X=Hello"'
    stderr 'invalid value'
    
    # -ldflags for implicit test package applies to test binary
    go test -a -c -n -gcflags=-N -ldflags=-X=x.y=z z1
    stderr 'compile.* -N .*z_test.go'
    stderr 'link.* -X=x.y=z'
    
    # -ldflags for explicit test package applies to test binary
    go test -a -c -n -gcflags=z1=-N -ldflags=z1=-X=x.y=z z1
    stderr 'compile.* -N .*z_test.go'
    stderr 'link.* -X=x.y=z'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 21 14:58:44 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. common/scripts/gobuild.sh

    GOPKG="$GOPATH/pkg"
    BUILDINFO=${BUILDINFO:-""}
    STATIC=${STATIC:-1}
    LDFLAGS=${LDFLAGS:--extldflags -static}
    GOBUILDFLAGS=${GOBUILDFLAGS:-""}
    # Split GOBUILDFLAGS by spaces into an array called GOBUILDFLAGS_ARRAY.
    IFS=' ' read -r -a GOBUILDFLAGS_ARRAY <<< "$GOBUILDFLAGS"
    
    GCFLAGS=${GCFLAGS:-}
    export CGO_ENABLED=${CGO_ENABLED:-0}
    
    if [[ "${STATIC}" !=  "1" ]];then
        LDFLAGS=""
    fi
    
    # gather buildinfo if not already provided
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 21 14:08:46 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/build_cache_output.txt

    go build -x -gcflags=-m -ldflags='-v -w' main.go
    ! stderr 'compile( |\.exe"?)'
    stderr 'main.go:2.* can inline main' # from compiler
    ! stderr 'link(\.exe"?)? -'
    stderr '\d+ symbols' # from linker
    
    # Running a test should run the compiler, linker, and the test the first time.
    go test -v -x -gcflags=-m -ldflags=-v p
    stderr 'compile( |\.exe"?)'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 2K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/version_build_settings.txt

    [GOARCH:amd64] stdout '^\tbuild\tGOAMD64='
    ! stdout asmflags|gcflags|ldflags|gccgoflags
    
    # Toolchain flags are added if present.
    # The raw flags are included, with package patterns if specified.
    go build -asmflags=example.com/m=-D=FOO=bar
    go version -m m$GOEXE
    stdout '^\tbuild\t-asmflags=example\.com/m=-D=FOO=bar$'
    
    go build -gcflags=example.com/m=-N
    go version -m m$GOEXE
    stdout '^\tbuild\t-gcflags=example\.com/m=-N$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 2.7K bytes
    - Viewed (0)
Back to top