Scott Pakin

Results 37 comments of Scott Pakin

What happens when you run `pkg-config --cflags -- clp` from the command line? You should get a list of flags for the C compiler, as in the following example: ```...

Hmm…I don't know what to advise. I don't have access to a Windows system I can use for development so I can't test this myself. Does `go run -x main.go`...

I'm glad to hear that `CGO_LDFLAGS` helps you build, but it's certainly strange that `main.exe` does nothing. If you put a `fmt.Fprintln(os.Stderr, "Starting now")` line at the very beginning of...

It's bizarre that an executable is being produced, but it doesn't do anything. What happens if you trim `main.go` to load `clp` but not invoke any of its functions: ```Go...

But your program runs fine when you comment out the `_ "github.com/lanl/clp"` line, right? Can you run the generated executable from within a debugger in case it's crashing on the...

Okay. This shows that there's definitely a problem with loading `clp`, even if none of its functions are invoked. By "error message" I'm hypothesizing that in the first piece of...

Could you please attach a small program that triggers the problem? I'll use that to diagnose and debug `clp`.