Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 139 for csflags (0.21 sec)

  1. src/cmd/go/internal/envcmd/env.go

    	defer func() {
    		if err := b.Close(); err != nil {
    			base.Fatal(err)
    		}
    	}()
    
    	cppflags, cflags, cxxflags, fflags, ldflags, err := b.CFlags(&load.Package{})
    	if err != nil {
    		// Should not happen - b.CFlags was given an empty package.
    		fmt.Fprintf(os.Stderr, "go: invalid cflags: %v\n", err)
    		return nil
    	}
    	cmd := b.GccCmd(".", "")
    
    	join := func(s []string) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  2. src/cmd/asm/main.go

    	architecture := arch.Set(GOARCH, *flags.Shared || *flags.Dynlink)
    	if architecture == nil {
    		log.Fatalf("unrecognized architecture %s", GOARCH)
    	}
    	ctxt := obj.Linknew(architecture.LinkArch)
    	ctxt.Debugasm = flags.PrintOut
    	ctxt.Debugvlog = flags.DebugV
    	ctxt.Flag_dynlink = *flags.Dynlink
    	ctxt.Flag_linkshared = *flags.Linkshared
    	ctxt.Flag_shared = *flags.Shared || *flags.Dynlink
    	ctxt.Flag_maymorestack = flags.DebugFlags.MayMoreStack
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/project/taskfactory/AnnotationProcessingTaskFactoryTest.groovy

            then:
            def e = thrown WorkValidationException
            validateException(task, e,
                missingValueMessage { property('cCompiler').includeLink() },
                missingValueMessage { property('CFlags').includeLink() },
                missingValueMessage { property('dns').includeLink() },
                missingValueMessage { property('URL').includeLink() })
        }
    
        def propertyValidationJavaBeanSpecSingleChar() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/schedule.go

    				// This makes sure that we only have one live flags
    				// value at a time.
    				// Note that this case is after the case above, so values
    				// which both read and generate flags are given ScoreReadFlags.
    				score[v.ID] = ScoreFlags
    			default:
    				score[v.ID] = ScoreDefault
    				// If we're reading flags, schedule earlier to keep flag lifetime short.
    				for _, a := range v.Args {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 15:53:17 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  5. src/syscall/syscall_openbsd.go

    	return Pipe2(p, 0)
    }
    
    //sysnb pipe2(p *[2]_C_int, flags int) (err error)
    
    func Pipe2(p []int, flags int) error {
    	if len(p) != 2 {
    		return EINVAL
    	}
    	var pp [2]_C_int
    	err := pipe2(&pp, flags)
    	if err == nil {
    		p[0] = int(pp[0])
    		p[1] = int(pp[1])
    	}
    	return err
    }
    
    //sys	accept4(fd int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (nfd int, err error)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 10:34:00 UTC 2023
    - 7K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modindex/build.go

    			args[i] = arg
    		}
    
    		switch verb {
    		case "CFLAGS", "CPPFLAGS", "CXXFLAGS", "FFLAGS", "LDFLAGS":
    			// Change relative paths to absolute.
    			ctxt.makePathsAbsolute(args, di.Dir)
    		}
    
    		switch verb {
    		case "CFLAGS":
    			di.CgoCFLAGS = append(di.CgoCFLAGS, args...)
    		case "CPPFLAGS":
    			di.CgoCPPFLAGS = append(di.CgoCPPFLAGS, args...)
    		case "CXXFLAGS":
    			di.CgoCXXFLAGS = append(di.CgoCXXFLAGS, args...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 17:39:23 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  7. src/internal/xcoff/file.go

    				return nil, err
    			}
    			s.Name = cstring(shdr.Sname[:])
    			s.VirtualAddress = uint64(shdr.Svaddr)
    			s.Size = uint64(shdr.Ssize)
    			scnptr = uint64(shdr.Sscnptr)
    			s.Type = shdr.Sflags
    			s.Relptr = uint64(shdr.Srelptr)
    			s.Nreloc = uint32(shdr.Snreloc)
    		case U64_TOCMAGIC:
    			shdr := new(SectionHeader64)
    			if err := binary.Read(sr, binary.BigEndian, shdr); err != nil {
    				return nil, err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 12 14:42:29 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/cgo_suspect_flag_force_external.txt

    mkdir tmp5
    
    # First build: no external linking expected
    go build -ldflags=-tmpdir=tmp1 -o $devnull ./noUseOfCgo &
    
    # Second build: using only "runtime/cgo", expect internal linking.
    go build -ldflags=-tmpdir=tmp2 -o $devnull ./usesInternalCgo &
    
    # Third build: program uses only "runtime/cgo", so we would normally
    # expect internal linking, except that cflags contain suspicious entries
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 25 18:16:01 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  9. src/syscall/syscall_netbsd.go

    //sys	Chdir(path string) (err error)
    //sys	Chflags(path string, flags int) (err error)
    //sys	Chmod(path string, mode uint32) (err error)
    //sys	Chown(path string, uid int, gid int) (err error)
    //sys	Chroot(path string) (err error)
    //sys	Close(fd int) (err error)
    //sys	Dup(fd int) (nfd int, err error)
    //sys	Dup2(from int, to int) (err error)
    //sys	Fchdir(fd int) (err error)
    //sys	Fchflags(fd int, flags int) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:12:35 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/test/test.go

       return c;
    }
    
    // issue 4857
    #cgo CFLAGS: -Werror
    const struct { int a; } *issue4857() { return (void *)0; }
    
    // issue 5224
    // Test that the #cgo CFLAGS directive works,
    // with and without platform filters.
    #cgo CFLAGS: -DCOMMON_VALUE=123
    #cgo windows CFLAGS: -DIS_WINDOWS=1
    #cgo !windows CFLAGS: -DIS_WINDOWS=0
    int common = COMMON_VALUE;
    int is_windows = IS_WINDOWS;
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
Back to top