File tree Expand file tree Collapse file tree 6 files changed +14
-18
lines changed Expand file tree Collapse file tree 6 files changed +14
-18
lines changed Original file line number Diff line number Diff line change @@ -19,8 +19,8 @@ set -ex
19
19
# which apparently magically accepts the licenses.
20
20
21
21
mkdir sdk
22
- curl --retry 5 https://dl.google.com/android/repository/sdk-tools-linux-3859397 .zip -O
23
- unzip -d sdk sdk-tools-linux-3859397 .zip
22
+ curl --retry 5 https://dl.google.com/android/repository/sdk-tools-linux-4333796 .zip -O
23
+ unzip -d sdk sdk-tools-linux-4333796 .zip
24
24
25
25
case " $1 " in
26
26
arm | armv7)
Original file line number Diff line number Diff line change 1
- FROM ubuntu:16 .04
1
+ FROM ubuntu:22 .04
2
2
3
- RUN dpkg --add-architecture i386 && \
4
- apt-get update && \
3
+ RUN apt-get update && \
5
4
apt-get install -y --no-install-recommends \
6
5
file \
7
6
make \
8
7
curl \
9
8
ca-certificates \
10
- python \
9
+ python-is-python3 \
11
10
unzip \
12
11
expect \
13
- openjdk-9 -jre \
14
- libstdc++6: i386 \
12
+ openjdk-8 -jre \
13
+ libstdc++6- i386-cross \
15
14
libpulse0 \
16
15
gcc \
17
16
libc6-dev
Original file line number Diff line number Diff line change 1
- FROM ubuntu:16 .04
1
+ FROM ubuntu:22 .04
2
2
3
- RUN dpkg --add-architecture i386 && \
4
- apt-get update && \
3
+ RUN apt-get update && \
5
4
apt-get install -y --no-install-recommends \
6
5
file \
7
6
make \
8
7
curl \
9
8
ca-certificates \
10
- python \
9
+ python-is-python3 \
11
10
unzip \
12
11
expect \
13
- openjdk-9 -jre \
14
- libstdc++6: i386 \
12
+ openjdk-8 -jre \
13
+ libstdc++6- i386-cross \
15
14
libpulse0 \
16
15
gcc \
17
16
libc6-dev
Original file line number Diff line number Diff line change 1
- FROM ubuntu:16 .04
1
+ FROM ubuntu:22 .04
2
2
3
3
RUN apt-get update && \
4
4
apt-get install -y --no-install-recommends \
5
5
ca-certificates \
6
6
curl \
7
7
gcc \
8
8
libc-dev \
9
- python \
9
+ python-is-python3 \
10
10
unzip \
11
11
file \
12
12
make
Original file line number Diff line number Diff line change 31
31
f16c_target_feature,
32
32
allow_internal_unstable,
33
33
decl_macro,
34
- bench_black_box,
35
34
asm_const,
36
35
target_feature_11
37
36
) ]
Original file line number Diff line number Diff line change 3
3
//! This basically just disassembles the current executable and then parses the
4
4
//! output once globally and then provides the `assert` function which makes
5
5
//! assertions about the disassembly of a function.
6
- #![ feature( bench_black_box) ] // For black_box
7
6
#![ deny( rust_2018_idioms) ]
8
7
#![ allow( clippy:: missing_docs_in_private_items, clippy:: print_stdout) ]
9
8
You can’t perform that action at this time.
0 commit comments