SVI 97893ea751 SVI Подгонка под tk 9.0 1 gadu atpakaļ
..
internal 97893ea751 SVI Подгонка под tk 9.0 1 gadu atpakaļ
.gitignore 97893ea751 SVI Подгонка под tk 9.0 1 gadu atpakaļ
LICENSE 97893ea751 SVI Подгонка под tk 9.0 1 gadu atpakaļ
README.md 97893ea751 SVI Подгонка под tk 9.0 1 gadu atpakaļ
abi_amd64.h 97893ea751 SVI Подгонка под tk 9.0 1 gadu atpakaļ
abi_arm64.h 97893ea751 SVI Подгонка под tk 9.0 1 gadu atpakaļ
cgo.go 97893ea751 SVI Подгонка под tk 9.0 1 gadu atpakaļ
dlerror.go 97893ea751 SVI Подгонка под tk 9.0 1 gadu atpakaļ
dlfcn.go 97893ea751 SVI Подгонка под tk 9.0 1 gadu atpakaļ
dlfcn_android.go 97893ea751 SVI Подгонка под tk 9.0 1 gadu atpakaļ
dlfcn_darwin.go 97893ea751 SVI Подгонка под tk 9.0 1 gadu atpakaļ
dlfcn_freebsd.go 97893ea751 SVI Подгонка под tk 9.0 1 gadu atpakaļ
dlfcn_linux.go 97893ea751 SVI Подгонка под tk 9.0 1 gadu atpakaļ
dlfcn_nocgo_freebsd.go 97893ea751 SVI Подгонка под tk 9.0 1 gadu atpakaļ
dlfcn_nocgo_linux.go 97893ea751 SVI Подгонка под tk 9.0 1 gadu atpakaļ
dlfcn_playground.go 97893ea751 SVI Подгонка под tk 9.0 1 gadu atpakaļ
dlfcn_stubs.s 97893ea751 SVI Подгонка под tk 9.0 1 gadu atpakaļ
func.go 97893ea751 SVI Подгонка под tk 9.0 1 gadu atpakaļ
go_runtime.go 97893ea751 SVI Подгонка под tk 9.0 1 gadu atpakaļ
is_ios.go 97893ea751 SVI Подгонка под tk 9.0 1 gadu atpakaļ
nocgo.go 97893ea751 SVI Подгонка под tk 9.0 1 gadu atpakaļ
struct_amd64.go 97893ea751 SVI Подгонка под tk 9.0 1 gadu atpakaļ
struct_arm64.go 97893ea751 SVI Подгонка под tk 9.0 1 gadu atpakaļ
struct_other.go 97893ea751 SVI Подгонка под tk 9.0 1 gadu atpakaļ
sys_amd64.s 97893ea751 SVI Подгонка под tk 9.0 1 gadu atpakaļ
sys_arm64.s 97893ea751 SVI Подгонка под tk 9.0 1 gadu atpakaļ
sys_unix_arm64.s 97893ea751 SVI Подгонка под tk 9.0 1 gadu atpakaļ
syscall.go 97893ea751 SVI Подгонка под tk 9.0 1 gadu atpakaļ
syscall_cgo_linux.go 97893ea751 SVI Подгонка под tk 9.0 1 gadu atpakaļ
syscall_sysv.go 97893ea751 SVI Подгонка под tk 9.0 1 gadu atpakaļ
syscall_windows.go 97893ea751 SVI Подгонка под tk 9.0 1 gadu atpakaļ
zcallback_amd64.s 97893ea751 SVI Подгонка под tk 9.0 1 gadu atpakaļ
zcallback_arm64.s 97893ea751 SVI Подгонка под tk 9.0 1 gadu atpakaļ

README.md

purego

Go Reference

A library for calling C functions from Go without Cgo.

This is beta software so expect bugs and potentially API breaking changes but each release will be tagged to avoid breaking people's code. Bug reports are encouraged.

Motivation

The Ebitengine game engine was ported to use only Go on Windows. This enabled cross-compiling to Windows from any other operating system simply by setting GOOS=windows. The purego project was born to bring that same vision to the other platforms supported by Ebitengine.

Benefits

  • Simple Cross-Compilation: No C means you can build for other platforms easily without a C compiler.
  • Faster Compilation: Efficiently cache your entirely Go builds.
  • Smaller Binaries: Using Cgo generates a C wrapper function for each C function called. Purego doesn't!
  • Dynamic Linking: Load symbols at runtime and use it as a plugin system.
  • Foreign Function Interface: Call into other languages that are compiled into shared objects.
  • Cgo Fallback: Works even with CGO_ENABLED=1 so incremental porting is possible. This also means unsupported GOARCHs (freebsd/riscv64, linux/mips, etc.) will still work except for float arguments and return values.

Supported Platforms

  • FreeBSD: amd64, arm64
  • Linux: amd64, arm64
  • macOS / iOS: amd64, arm64
  • Windows: 386, amd64, arm, arm64

* These architectures only support SyscallN and NewCallback

Example

The example below only showcases purego use for macOS and Linux. The other platforms require special handling which can be seen in the complete example at examples/libc which supports Windows and FreeBSD.

package main

import (
	"fmt"
	"runtime"

	"github.com/ebitengine/purego"
)

func getSystemLibrary() string {
	switch runtime.GOOS {
	case "darwin":
		return "/usr/lib/libSystem.B.dylib"
	case "linux":
		return "libc.so.6"
	default:
		panic(fmt.Errorf("GOOS=%s is not supported", runtime.GOOS))
	}
}

func main() {
	libc, err := purego.Dlopen(getSystemLibrary(), purego.RTLD_NOW|purego.RTLD_GLOBAL)
	if err != nil {
		panic(err)
	}
	var puts func(string)
	purego.RegisterLibFunc(&puts, libc, "puts")
	puts("Calling C from Go without Cgo!")
}

Then to run: CGO_ENABLED=0 go run main.go

Questions

If you have questions about how to incorporate purego in your project or want to discuss how it works join the Discord!

External Code

Purego uses code that originates from the Go runtime. These files are under the BSD-3 License that can be found in the Go Source. This is a list of the copied files:

  • abi_*.h from package runtime/cgo
  • zcallback_darwin_*.s from package runtime
  • internal/fakecgo/abi_*.h from package runtime/cgo
  • internal/fakecgo/asm_GOARCH.s from package runtime/cgo
  • internal/fakecgo/callbacks.go from package runtime/cgo
  • internal/fakecgo/go_GOOS_GOARCH.go from package runtime/cgo
  • internal/fakecgo/iscgo.go from package runtime/cgo
  • internal/fakecgo/setenv.go from package runtime/cgo
  • internal/fakecgo/freebsd.go from package runtime/cgo

The files abi_*.h and internal/fakecgo/abi_*.h are the same because Bazel does not support cross-package use of #include so we need each one once per package. (cf. issue)