2019-01-11 11:00:12 +00:00
|
|
|
// Copyright 2019 The go-python Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2022-06-19 08:58:22 +00:00
|
|
|
//go:build (linux && !android) || dragonfly || openbsd
|
2019-02-13 05:53:20 +00:00
|
|
|
// +build linux,!android dragonfly openbsd
|
2019-01-11 11:00:12 +00:00
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
const (
|
2019-06-07 09:55:03 +00:00
|
|
|
libExt = ".so"
|
|
|
|
extraGccArgs = ""
|
2019-01-11 11:00:12 +00:00
|
|
|
)
|