1
0
mirror of https://github.com/golang/go synced 2024-09-25 01:30:13 -06: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:
Russ Cox 2010-09-24 11:55:16 -04:00
parent 34d413f562
commit 6cf1a34402

View File

@ -7,7 +7,7 @@
all: $(LIB)
%.$(HOST_O): %.c
$(HOST_CC) $(HOST_CFLAGS) -c $*.c
$(HOST_CC) $(HOST_CFLAGS) -c "$(PWD)/$*.c"
$(OFILES): $(HFILES)