mirror of
https://github.com/pion/mediadevices.git
synced 2025-10-01 06:42:09 +08:00
Fix build test target without CGO (#366)
Fix `go: warning: "pkg/..." matched no packages`
This commit is contained in:
3
Makefile
3
Makefile
@@ -25,6 +25,7 @@ codec_list := $(shell ls $(codec_dir)/*/Makefile)
|
|||||||
codec_list := $(codec_list:$(codec_dir)/%/Makefile=%)
|
codec_list := $(codec_list:$(codec_dir)/%/Makefile=%)
|
||||||
targets := $(foreach codec, $(codec_list), $(addprefix $(cmd_build)-$(codec)-, $(supported_platforms)))
|
targets := $(foreach codec, $(codec_list), $(addprefix $(cmd_build)-$(codec)-, $(supported_platforms)))
|
||||||
pkgs_without_mmal := $(shell go list ./... | grep -v mmal)
|
pkgs_without_mmal := $(shell go list ./... | grep -v mmal)
|
||||||
|
pkgs_without_cgo := $(shell go list ./... | grep -v pkg/codec | grep -v pkg/driver | grep -v pkg/avfoundation)
|
||||||
|
|
||||||
define BUILD_TEMPLATE
|
define BUILD_TEMPLATE
|
||||||
ifneq (,$$(findstring $(2)-$(3),$$(supported_platforms)))
|
ifneq (,$$(findstring $(2)-$(3),$$(supported_platforms)))
|
||||||
@@ -74,7 +75,7 @@ $(cmd_test):
|
|||||||
go vet $(pkgs_without_mmal)
|
go vet $(pkgs_without_mmal)
|
||||||
go build $(pkgs_without_mmal)
|
go build $(pkgs_without_mmal)
|
||||||
# go build without CGO
|
# go build without CGO
|
||||||
CGO_ENABLED=0 go build . pkg/...
|
CGO_ENABLED=0 go build $(pkgs_without_cgo)
|
||||||
# go build with CGO
|
# go build with CGO
|
||||||
CGO_ENABLED=1 go build $(pkgs_without_mmal)
|
CGO_ENABLED=1 go build $(pkgs_without_mmal)
|
||||||
$(MAKE) --directory=$(examples_dir)
|
$(MAKE) --directory=$(examples_dir)
|
||||||
|
Reference in New Issue
Block a user