Skip to content

Commit 0cc5fa4

Browse files
fix linux x86 build (#10)
1 parent 4ae8d0e commit 0cc5fa4

3 files changed

Lines changed: 7 additions & 3 deletions

File tree

linux-dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ENV TZ Europe/London
99
RUN apt update && \
1010
apt -y upgrade
1111

12-
RUN apt -y install python3-pip gcc-aarch64-linux-gnu binutils-aarch64-linux-gnu
12+
RUN apt -y install python3-pip gcc-aarch64-linux-gnu binutils-aarch64-linux-gnu gcc-x86-64-linux-gnu binutils-x86-64-linux-gnu
1313

1414
RUN pip install conan
1515

profiles/linux-armv8.profile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ include(default)
44
os=Linux
55
arch=armv8
66
compiler=gcc
7-
compiler.version=9.2
7+
compiler.version=11.3
88
compiler.libcxx=libstdc++
99

1010
[env]

profiles/linux-x86.profile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,9 @@ include(default)
44
os=Linux
55
arch=x86_64
66
compiler=gcc
7-
compiler.version=9.2
7+
compiler.version=11.3
88
compiler.libcxx=libstdc++
9+
10+
[env]
11+
CC=x86_64-linux-gnu-gcc
12+
CXX=x86_64-linux-gnu-g++

0 commit comments

Comments
 (0)