2019-02-13 06:21:48 +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 darwin
|
2019-02-13 06:21:48 +00:00
|
|
|
// +build darwin
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
const (
|
|
|
|
// libExt = ".dylib" // theoretically should be this but python only recognizes .so
|
2019-06-07 09:55:03 +00:00
|
|
|
libExt = ".so"
|
|
|
|
extraGccArgs = "-dynamiclib"
|
2019-02-13 06:21:48 +00:00
|
|
|
)
|