File tree Expand file tree Collapse file tree 3 files changed +6
-10
lines changed Expand file tree Collapse file tree 3 files changed +6
-10
lines changed Original file line number Diff line number Diff line change 7
7
RUST_LIB_TOUCH = touch $@
8
8
9
9
ifneq ($(JIT_CARGO_SUPPORT ) ,no)
10
+
11
+ # Show Cargo progress when doing `make V=1`
12
+ CARGO_VERBOSE_0 = -q
13
+ CARGO_VERBOSE_1 =
14
+ CARGO_VERBOSE = $(CARGO_VERBOSE_$(V ) )
15
+
10
16
# NOTE: MACOSX_DEPLOYMENT_TARGET to match `rustc --print deployment-target` to avoid the warning below.
11
17
# ld: warning: object file (target/debug/libjit.a(<libcapstone object>)) was built for
12
18
# newer macOS version (15.2) than being linked (15.0)
Original file line number Diff line number Diff line change 1
1
# -*- mode: makefile-gmake; indent-tabs-mode: t -*-
2
2
3
- # Show Cargo progress when doing `make V=1`
4
- CARGO_VERBOSE_0 = -q
5
- CARGO_VERBOSE_1 =
6
- CARGO_VERBOSE = $(CARGO_VERBOSE_$(V ) )
7
-
8
3
YJIT_SRC_FILES = $(wildcard \
9
4
$(top_srcdir ) /yjit/Cargo.* \
10
5
$(top_srcdir ) /yjit/src/* .rs \
Original file line number Diff line number Diff line change 3
3
# Put no definitions when ZJIT isn't configured
4
4
ifneq ($(ZJIT_SUPPORT ) ,no)
5
5
6
- # Show Cargo progress when doing `make V=1`
7
- CARGO_VERBOSE_0 = -q
8
- CARGO_VERBOSE_1 =
9
- CARGO_VERBOSE = $(CARGO_VERBOSE_$(V ) )
10
-
11
6
ZJIT_SRC_FILES = $(wildcard \
12
7
$(top_srcdir ) /zjit/Cargo.* \
13
8
$(top_srcdir ) /zjit/src/* .rs \
You can’t perform that action at this time.
0 commit comments