Make the golang.org/x/mobile/bind/java buildable without CGO, and replace the which tool with exec.LookPath. Both helps on Windows that often don't have a C compiler available and no which command. Found while testing external NDK use on Windows. Change-Id: I6d3311aae3fa97acb61b5ab9bed334e4a608c386 Reviewed-on: https://go-review.googlesource.com/35174 Reviewed-by: Hyang-Ah Hana Kim <hyangah@gmail.com>
9 lines
288 B
Go
9 lines
288 B
Go
// Copyright 2015 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.
|
|
|
|
// Package java implements the Java language bindings.
|
|
//
|
|
// See the design document (http://golang.org/s/gobind).
|
|
package java
|