public inbox for nncp-devel@lists.stargrave.org
Atom feed
* [nncp-devel] Problems getting NNCP 4.0 to compile
@ 2019-04-30 18:54 Shawn K. Quinn
  2019-05-01 20:22 ` Sergey Matveev
  0 siblings, 1 reply; 2+ messages in thread
From: Shawn K. Quinn @ 2019-04-30 18:54 UTC (permalink / raw)
  To: nncp-devel

First, it should be noted that NNCP 4.0 appears to require at least Go
1.11 or later. The 1.10 that comes with Ubuntu 18.04 LTS won't cut it
anymore.

Even after upgrading to Go 1.12, I wind up getting this when trying to
build:

skquinn@moonpatrol:~/usr/src/nncp-4.0$ make
cd /home/skquinn/usr/src/nncp-4.0/src/cypherpunks.ru/nncp ;
GOPATH=/home/skquinn/usr/src/nncp-4.0/gopath go build -mod=vendor
-ldflags "-X cypherpunks.ru/nncp.Version=4.0 -X
cypherpunks.ru/nncp.DefaultCfgPath=/usr/local/etc/nncp.yaml -X
cypherpunks.ru/nncp.DefaultSendmailPath=/usr/sbin/sendmail -X
cypherpunks.ru/nncp.DefaultSpoolPath=/var/spool/nncp -X
cypherpunks.ru/nncp.DefaultLogPath=/var/spool/nncp/log"
cypherpunks.ru/nncp/cmd/nncp-bundle
build flag -mod=vendor only valid when using modules
common.mk:51: recipe for target 'nncp-bundle' failed
make: *** [nncp-bundle] Error 1

Changing common.mk not to include -mod=vendor fares no better:

skquinn@moonpatrol:~/usr/src/nncp-4.0$ make
cd /home/skquinn/usr/src/nncp-4.0/src/cypherpunks.ru/nncp ;
GOPATH=/home/skquinn/usr/src/nncp-4.0/gopath go build  -ldflags "-X
cypherpunks.ru/nncp.Version=4.0 -X
cypherpunks.ru/nncp.DefaultCfgPath=/usr/local/etc/nncp.yaml -X
cypherpunks.ru/nncp.DefaultSendmailPath=/usr/sbin/sendmail -X
cypherpunks.ru/nncp.DefaultSpoolPath=/var/spool/nncp -X
cypherpunks.ru/nncp.DefaultLogPath=/var/spool/nncp/log"
cypherpunks.ru/nncp/cmd/nncp-bundle
# cypherpunks.ru/nncp
../../../gopath/src/cypherpunks.ru/nncp/ctx.go:115:17: invalid
operation: s.Bavail * int64(s.Bsize) (mismatched types uint64 and int64)
common.mk:51: recipe for target 'nncp-bundle' failed
make: *** [nncp-bundle] Error 2

What could I be missing?

-- 
Shawn K. Quinn <skquinn@rushpost•com>
http://www.rantroulette.com
http://www.skqrecordquest.com

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2019-05-01 20:22 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-04-30 18:54 [nncp-devel] Problems getting NNCP 4.0 to compile Shawn K. Quinn
2019-05-01 20:22 ` Sergey Matveev