mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-02 05:54:26 +01:00
This patch enable compile nemu for arm64 in container on x86 host. fixed: #577 Signed-off-by: Jianyong Wu <jianyong.wu@arm.com>
14 lines
275 B
Makefile
14 lines
275 B
Makefile
#Copyright (c) 2019 Intel Corporation
|
|
#
|
|
#SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
MK_DIR :=$(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
|
|
CONFIG_DIR := $(MK_DIR)/../../scripts/
|
|
|
|
build:
|
|
"$(MK_DIR)/build-static-nemu.sh" $(arch)
|
|
|
|
clean:
|
|
rm -f kata-nemu-static.tar.gz
|