From c2540bda4a2f4445e3dc9e9691d31619f8008baf Mon Sep 17 00:00:00 2001 From: Aulus Egnatius Varialus Date: Wed, 4 Sep 2013 15:19:21 -0700 Subject: cgo: enable cgo on dragonfly Enable cgo for dragonfly/386 and dragonfly/amd64. R=golang-dev, jsing, iant, bradfitz CC=golang-dev https://codereview.appspot.com/13247046 Committer: Ian Lance Taylor --- src/pkg/runtime/cgo/dragonfly.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/pkg/runtime/cgo/dragonfly.c (limited to 'src/pkg/runtime/cgo/dragonfly.c') diff --git a/src/pkg/runtime/cgo/dragonfly.c b/src/pkg/runtime/cgo/dragonfly.c new file mode 100644 index 000000000..acf53e265 --- /dev/null +++ b/src/pkg/runtime/cgo/dragonfly.c @@ -0,0 +1,13 @@ +// Copyright 2010 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Supply environ and __progname, because we don't +// link against the standard DragonFly crt0.o and the +// libc dynamic library needs them. + +char *environ[1]; +char *__progname; + +#pragma dynexport environ environ +#pragma dynexport __progname __progname -- cgit v1.2.1