The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
56 views

Using Windows libraries with cgo

I'm trying to build a Go package which makes use of TagLib, and I'm having a little trouble figuring out exactly how to use the compiled libraries with cgo. I've compiled TagLib, which has spit out ...
9
votes
0answers
282 views

Using OpenGL from Go

I am trying to use OpenGL from within a Go program. I think I have all of the pieces in place, but I am still not quite able to get it running. My C compiler is the 64-bit version of mingw. It is in ...
2
votes
1answer
90 views

From []byte to char*

I want to wrap a C function that takes a char* pointing to (the first element of) a non-empty buffer of bytes. I'm trying to wrap that in a Go function using CGo so that I can pass it a []byte, but I ...
1
vote
1answer
76 views

Go - LDFLAGS: -w -hostobj gives error

I am writing a Go package that calls C code. I need to invoke the host linker, but unfortunately adding the -hostobj flag gives me following error: gcc: error: unrecognized option ‘-h’ Operating ...
0
votes
1answer
70 views

cgo and pkg-config

I want to run GraphicsMagick with cgo. /* #cgo pkg-config: GraphicsMagick-config #include <magick/api.h> static int gm(int argc, char **argv) { int status; status = GMCommand(argc, ...
2
votes
1answer
151 views

Golang (cgo) - Arbitrary void* interface

I am wrapping a C library that has a struct with a void* data field that can be used to arbitrarily hold data. What would be the best way (if it's even possible) to wrap this in idiomatic Go? The ...
0
votes
0answers
94 views

use swig -go on windows with Visual Studio

I want to use golang call c++ dll with swig on windows. (gc compiler, on Linux was successful.) But there have some problems. Here is the sample. //sampel.h int compute(int a, int b); //sample.cpp ...
2
votes
2answers
92 views

go + cgo and linking

i want to use the following c as Go's cgo: #include <X11/extensions/scrnsaver.h> main() { XScreenSaverInfo *info = XScreenSaverAllocInfo(); Display *display = XOpenDisplay(0); ...
4
votes
2answers
128 views

How to convert from [][]byte to **char in go

I would like to convert from a go [][]byte to a C **char. In other words, I have a byte matrix in go that I would like to convert to a char double pointer in C. Please assume that I HAVE to have a ...
3
votes
1answer
215 views

how can I wrap zlib in golang?

I tried to fix the golang's slowest zip implementation by calling the c zlib from golang using cgo but I get an error error: 'deflateInit' undeclared (first use in this function) deflateInit ...
0
votes
3answers
179 views

CGO; C function has int pointer argument, how to pass correct type?

Currently I'm using Cgo to call C functions from Go. I'm trying to recreate the 'Read a Photo' example in Go. One on the C functions, however, expects a int* len argument (bonus question; is that ...
1
vote
2answers
147 views

Error: Could not determine kind of name for C.stdout when building example from C? Go? Cgo! article

I'm trying to build the following example from C? Go? Cgo!: package print /* #include <stdio.h> #include <stdlib.h> */ import "C" import "unsafe" func Print(s string) { cs := ...
3
votes
1answer
117 views

problems when accessing C union field

I'd like to access the field of C union in Go. below is my source code, but i got an error when compile it: package main // #include <stdio.h> // #include <stdlib.h> // union bar { // ...
6
votes
1answer
180 views

Is there a way to release unmanaged resources when a Go struct is collected?

I have a pointer to a C type wrapped by a Go struct, like so: type Wrapper struct { unmanaged *C.my_c_type } The C type, in turn, has the following functions: my_c_type* make_c_type(); void ...
1
vote
1answer
227 views

Can I use cgo with Windows SDK?

I've just tried tdm-gcc and it works, but is it possible to use cgo with Windows SDK?
2
votes
1answer
225 views

How to make stdcall from Go

I have a pointer to a COM interface and would like to take the function pointers from its virtual table and make method calls. To do this I need to make stdcall method calls. In Go how do I make a ...
3
votes
1answer
193 views

Can I use c++ in cgo?

Is it possible to mix in some C++ code in cgo? I tried this: package main /* #include <iostream> extern "C" void test(const char* str) { std::cout << str; } */ ...
2
votes
1answer
116 views

How to use cgo in Goclipse with Mingw?

When i try to use cgo I get the error exec gcc: exec: "gcc": executable file not found in %PATH% I have Mingw installed. How do I tell Goclipse where gcc is? I could not find a way in preferences or ...
6
votes
2answers
178 views

Is is possible to build Android games in Go using the NDK with cgo and/or SWIG or similar?

Is it possible to use Go to build Android games at all? I'm not wedded to the technologies mentioned in the subject line. I know that some people have built some Android programs in Go, but they may ...
6
votes
2answers
247 views

Conditional compilation in Go

I'm trying to write a Go wrapper using CGo for ENet. When I tried to compile my wrapper on a Mac the library was older and had a slightly different interface. 99% of the code is the same just a few ...
1
vote
2answers
472 views

OpenGL's glClear() causes Access Violation (0xc0000005) in Windows 64 [closed]

Take a look at this super-simple small test-case OpenGL program written in Go: package main import ( "runtime" "./glfw" gl "github.com/chsc/gogl/gl21" ) func onExit (err error) { ...
1
vote
1answer
183 views

Doesn't “go get” just fetch files and then cgo+“go build” them? Apparently not

I have a problem building a fairly simple local CGO project. Consider this very small CGO package of just 3 files (glut.go, support.c and support.h file) -- if I just go get it, these files are ...
21
votes
3answers
1k views

DLL-linking via Windows cgo->gcc->ld gives “undefined-reference-to-(function)” errors [closed]

(Very detailed problem report -- tl;dr at the bottom!) I really prefer GLFW to Glut and want to get its Golang binding working under Windows 64-bit with Go 1.0.1 64-bit. Under Linux, the binding it ...
1
vote
1answer
345 views

Windows DLL-linking with cgo

My ultimate goal is to successfully link to a number of DLLs (opengl32.dll glfw.dll and glu32.dll) from a Go package -- but trying to link to the go-glfw package gave me "not defined" errors. So I ...
1
vote
1answer
212 views

cgo - How to convert go string to LPCWSTR

I would like to use some of windows api, but I have no idea how to start. Is there any tutorial for it? Anyway I have a simple code. Can you please help me to get this correct? package mypackage /* ...
1
vote
1answer
257 views

Garbage collection and cgo

Is it possible to make the garbage collector in Go handle and release memory allocated through C code? I apologize, I haven't used C and cgo before so my examples may need some clarification. Lets ...