[rfc] build bug in type abstraction?

57 views
Skip to first unread message

John Pritchard

unread,
Aug 16, 2023, 1:05:49 PM8/16/23
to go-nuts
Hi,

I have a disparity between "go run" [https://go.dev/play/p/5mr5M0luZ9k?v=goprev
and "go build" [https://github.com/syntelos/go-type-abstraction/tree/third].  Using go version 1.21.0.

A fairly simple structure of type abstraction works on play.go.dev, but fails to build.

Comments?  Issue?

Thanks,

John


Jason Phillips

unread,
Aug 16, 2023, 1:56:55 PM8/16/23
to golang-nuts
A few things:

* As illustrated by the output in your README, it appears your "make list" command is only compiling "main/main.go", rather than both "main/main.go" and "main/run.go"
* There can only be one main function per main package in Go, so I'm not sure how main/run.go and main/main.go are expected to coexist in a valid Go application

Brian Candler

unread,
Aug 16, 2023, 1:58:11 PM8/16/23
to golang-nuts
On Wednesday, 16 August 2023 at 14:05:49 UTC+1 John Pritchard wrote: 
I have a disparity between "go run" [https://go.dev/play/p/5mr5M0luZ9k?v=goprev
and "go build" [https://github.com/syntelos/go-type-abstraction/tree/third].  Using go version 1.21.0.

I don't quite understand where "go run" comes into this.  In your Makefile, both options use "go build".

"make list" is doing something dubious:

go_sources := $(shell ls *.go)
...
list: main/main.go $(go_sources)
go build -o $@ $<

That is, I think you're trying to compile "main/main.go" and "types.go" at the same time into a single object file.  But types.go is "package types" whereas main.go is "package main".  That should give you an error; if it doesn't, that makes me suspect that go_sources is in fact empty.  The "make list" output you show in README.txt appears to confirm this:

$ make
go build -o list main/main.go    # <<< note that no additional sources are listed on the command line

In main.go, there is a pretty clear error that the compiler calls out in line 46:
main/main.go:46:15: undefined: Abstract

The corresponding source line is:
var abstract Abstract = types.Init()

and as far as I can see, it's correct: you have no type "Abstract" in package main in main.go (in otherwise, you should be referring to "types.Abstract")


John Pritchard

unread,
Aug 16, 2023, 3:18:11 PM8/16/23
to Brian Candler, golang-nuts
Hi Brian,

Thanks for the review.  Your basic conclusion matches mine, that the ./main/main.go:46 and ./types.go are proven in the "go run" case, and disproven in the "go build" case.  

Best,

John


--
You received this message because you are subscribed to the Google Groups "golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/golang-nuts/a0716bee-a6b9-4ea7-b4a7-165c4ef43fabn%40googlegroups.com.
Reply all
Reply to author
Forward
0 new messages