Commit 6cf1a344 authored by Russ Cox's avatar Russ Cox

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
parent 34d413f5
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
all: $(LIB) all: $(LIB)
%.$(HOST_O): %.c %.$(HOST_O): %.c
$(HOST_CC) $(HOST_CFLAGS) -c $*.c $(HOST_CC) $(HOST_CFLAGS) -c "$(PWD)/$*.c"
$(OFILES): $(HFILES) $(OFILES): $(HFILES)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment