-
Notifications
You must be signed in to change notification settings - Fork 17.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cmd/go: applying swig's %go_import directive to non-builtin packages is not supported #18343
Comments
A more tangible example showing why Consider two C++ libraries, one whose declarations are exported in the header foo.hpp and another in bar.hpp. Consider further that bar.hpp uses symbols from foo.hpp. In the following example, foo.hpp defines an The first version of the The second version of the If one wants to avoid the two-step build, one has to wrap both foo.hpp and bar.hpp in a single package, say
#pragma once
#include "foo.hpp"
static inline bool isUp(enum state s) {
return(s == UP);
}
#pragma once
enum state { UP, DN };
package bar
// #cgo CXXFLAGS: -I${SRCDIR}/../../cpp/include
import "C"
package foo
// #cgo CXXFLAGS: -I${SRCDIR}/../../cpp/include
import "C"
package main
import (
"log"
b "swig-sandbox/bug-reports/go-swig/go_import/go/bar"
f "swig-sandbox/bug-reports/go-swig/go_import/go/foo"
)
func main() {
if !b.IsUp(f.UP) {
log.Fatal("f.UP is not up!")
}
log.Println("A-OK")
}
}
func IsUp(arg1 f.State) (_swig_ret bool) {
var swig_r bool
_swig_i_0 := arg1
swig_r = (bool)(C._wrap_isUp_bar_7f645dbcfef3df15(C.swig_intgo(_swig_i_0)))
return swig_r
}
|
I agree it would be nice to fix this problem. Although I haven't tested it, I think that another workaround would be to run Yet another workaround would be to modify some .go file in the directory to say
I'm not sure how to actually fix this problem, because a proper fix would require the go tool to parse the .swig file. It seems to me that fully correct parsing of a .swig file requires implementing the C preprocessor and requires parsing some C or C++ code to distinguish the SWIG directives from other code in the file. SWIG uses a yacc parser with the comment "This file is a bit of a mess and probably needs to be rewritten at some point. Beware." I don't really foresee the go tool incorporating its own version of the SWIG parser. One plausible approach might be to add an option to SWIG to essentially dump the list of go_imports. Then the go tool could invoke SWIG with that option and use that to get the list of dependencies. I'm not sure whether or not that is a good idea, since it means that |
Putting I'm sure there are reasons for go build working this way, but I think the go build system should first run swig to generate go files and then proceed to the normal build as if swig isn't present. That way, a package could simply contain an interface file and still build (but today the build fails with the "no buildable Go source file" error) |
One of swig's useful language-specific directives for the Go language is
%go_import
. It allows defining typemaps and wrappers (with%insert(go_wrapper)
), among others, using symbols defined in a user-defined package found under $GOPATH/src. However, the go build system only allows%go_import
of builtin packages. User-defined packages are not accessible in the temporary workspace which go creates to build a package that uses swig interface files.The following, while not really interfacing with any C/C++ library, demonstrates this problem. It's using go1.7 on darwin/amd64. But this problem is seen on all platforms.
The first attempt at making and executing the main package at swig-sandbox/import relies on the go build system's support for swig. It fails. The second attempt is made after invoking swig manually (removing *.swigcxx to prevent the go build system to also try to invoke swig). It succeeds, obviously.
As can be seen, the workaround is to not use *.swigcxx files and instead do a two-step compilation -- explicitly invoke swig and then use go build. But it's desirable to have the go build system to call swig. Note also that
%go_import
of"fmt"
was fine. It was the%go_import
of"swig-sandbox/import/mytime"
, a user-defined package, that was problematic.The text was updated successfully, but these errors were encountered: