mirror of
https://github.com/golang/go
synced 2024-11-21 19:14:44 -07:00
build: use full path when compiling libraries
Makes gdb display full paths in backtrace. Dropped during the most recent reorg. R=r CC=golang-dev https://golang.org/cl/2216047
This commit is contained in:
parent
34d413f562
commit
6cf1a34402
@ -7,7 +7,7 @@
|
||||
all: $(LIB)
|
||||
|
||||
%.$(HOST_O): %.c
|
||||
$(HOST_CC) $(HOST_CFLAGS) -c $*.c
|
||||
$(HOST_CC) $(HOST_CFLAGS) -c "$(PWD)/$*.c"
|
||||
|
||||
$(OFILES): $(HFILES)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user