2020-08-18 17:35:39 -07:00
|
|
|
BINARY = weed
|
|
|
|
|
|
|
|
SOURCE_DIR = .
|
|
|
|
|
|
|
|
all: debug_mount
|
|
|
|
|
|
|
|
.PHONY : clean debug_mount
|
|
|
|
|
|
|
|
clean:
|
|
|
|
go clean $(SOURCE_DIR)
|
|
|
|
rm -f $(BINARY)
|
|
|
|
|
2020-09-12 04:05:42 -07:00
|
|
|
debug_shell:
|
|
|
|
go build -gcflags="all=-N -l"
|
|
|
|
dlv --listen=:2345 --headless=true --api-version=2 --accept-multiclient exec weed -- shell
|
|
|
|
|
2020-08-18 17:35:39 -07:00
|
|
|
debug_mount:
|
|
|
|
go build -gcflags="all=-N -l"
|
2020-10-12 21:58:37 -07:00
|
|
|
dlv --listen=:2345 --headless=true --api-version=2 --accept-multiclient exec weed -- mount -dir=~/tmp/mm -cacheCapacityMB=0 -filer.path=/buckets
|
2020-08-19 12:07:43 -07:00
|
|
|
|
|
|
|
debug_server:
|
|
|
|
go build -gcflags="all=-N -l"
|
|
|
|
dlv --listen=:2345 --headless=true --api-version=2 --accept-multiclient exec weed -- server -dir=/Volumes/mobile_disk/99 -filer -volume.port=8343 -s3 -volume.max=0
|
2020-09-12 04:05:42 -07:00
|
|
|
|
|
|
|
debug_volume:
|
|
|
|
go build -gcflags="all=-N -l"
|
2020-09-13 21:25:51 -07:00
|
|
|
dlv --listen=:2345 --headless=true --api-version=2 --accept-multiclient exec weed -- volume -dir=/Volumes/mobile_disk/100 -port 8564 -max=30 -preStopSeconds=2
|
2020-10-16 12:53:56 -07:00
|
|
|
|
|
|
|
debug_webdav:
|
|
|
|
go build -gcflags="all=-N -l"
|
|
|
|
dlv --listen=:2345 --headless=true --api-version=2 --accept-multiclient exec weed -- -v=4 webdav
|