Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for writeGDBLinkerScript (0.2 sec)

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

    			}
    		}()
    	}
    	wg.Wait()
    	return paths
    }
    
    // writeGDBLinkerScript creates gcc linker script file in temp
    // directory. writeGDBLinkerScript returns created file path.
    // The script is used to work around gcc bug
    // (see https://golang.org/issue/20183 for details).
    func writeGDBLinkerScript() string {
    	name := "fix_debug_gdb_scripts.ld"
    	path := filepath.Join(*flagTmpdir, name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/dwarf.go

    		// causes the program not to run. See https://golang.org/issue/20183
    		// Non c-archives can avoid this issue via a linker script
    		// (see fix near writeGDBLinkerScript).
    		// c-archive users would need to specify the linker script manually.
    		// For UX it's better not to deal with this.
    		return dwarfSecInfo{}
    	}
    	if gdbscript == "" {
    		return dwarfSecInfo{}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
Back to top