We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb73859 commit 26e8404Copy full SHA for 26e8404
src/share/rsdk/infra-package/Makefile.jsonnet
@@ -17,11 +17,23 @@ function(
17
all: build
18
19
.PHONY: devcontainer_setup
20
- devcontainer_setup:
+ devcontainer_setup: pre_build_dep main_build_dep post_build_dep
21
+
22
+ .PHONY: pre_build_dep
23
+ pre_build_dep:
24
25
+ .PHONY: main_build_dep
26
+ main_build_dep:
27
sudo dpkg --add-architecture arm64
28
sudo apt-get update
29
sudo apt-get install -y crossbuild-essential-arm64 binfmt-support qemu-user-static
30
sudo apt-get build-dep . -y
31
32
+ .PHONY: post_build_dep
33
+ post_build_dep:
34
35
+ .PHONY: arm64_crossbuild_dep
36
+ arm64_crossbuild_dep:
37
sudo apt-get build-dep . -y --host-architecture arm64
38
39
#
0 commit comments