Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for DF_1_PIE (0.85 sec)

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

    					"DT_FLAGS_1 DF_1_NOW	got: %v,	want: %v",
    					gotDfBindNow, test.wantDfBindNow, gotDf1Now, test.wantDf1Now)
    			}
    
    			if gotDf1Pie := gotDynFlag(flags1, uint64(elf.DF_1_PIE)); gotDf1Pie != test.wantDf1Pie {
    				t.Fatalf("DT_FLAGS_1 DF_1_PIE got: %v, want: %v", gotDf1Pie, test.wantDf1Pie)
    			}
    
    			wsrolists := [][]string{test.wantSecsRO, test.wantSecsROIfPresent}
    			for k, wsrolist := range wsrolists {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 13:44:07 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. src/debug/elf/elf.go

    	DF_1_SINGLETON DynFlag1 = 0x02000000
    	// Indicates that the object is a stub.
    	DF_1_STUB DynFlag1 = 0x04000000
    	// Indicates that the object is a position-independent executable.
    	DF_1_PIE DynFlag1 = 0x08000000
    	// Indicates that the object is a kernel module.
    	DF_1_KMOD DynFlag1 = 0x10000000
    	// Indicates that the object is a weak standard filter.
    	DF_1_WEAKFILTER DynFlag1 = 0x20000000
    	// Unused.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/elf.go

    	var dtFlags1 elf.DynFlag1
    	if *flagBindNow {
    		dtFlags1 |= elf.DF_1_NOW
    		Elfwritedynent(ctxt.Arch, s, elf.DT_FLAGS, uint64(elf.DF_BIND_NOW))
    	}
    	if ctxt.BuildMode == BuildModePIE {
    		dtFlags1 |= elf.DF_1_PIE
    	}
    	Elfwritedynent(ctxt.Arch, s, elf.DT_FLAGS_1, uint64(dtFlags1))
    
    	elfverneed = nfile
    	if elfverneed != 0 {
    		elfWriteDynEntSym(ctxt, s, elf.DT_VERNEED, gnuVersionR.Sym())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"DF_1_NOHDR", Const, 21},
    		{"DF_1_NOKSYMS", Const, 21},
    		{"DF_1_NOOPEN", Const, 21},
    		{"DF_1_NORELOC", Const, 21},
    		{"DF_1_NOW", Const, 21},
    		{"DF_1_ORIGIN", Const, 21},
    		{"DF_1_PIE", Const, 21},
    		{"DF_1_SINGLETON", Const, 21},
    		{"DF_1_STUB", Const, 21},
    		{"DF_1_SYMINTPOSE", Const, 21},
    		{"DF_1_TRANS", Const, 21},
    		{"DF_1_WEAKFILTER", Const, 21},
    		{"DF_BIND_NOW", Const, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top