blob: 1c29e8dcf36d53c87b268ce9ffdf5b531b96c5e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
target_host=x86_64-none-elf
cc_compiler=gcc
cxx_compiler=g++
[env]
CHOST=$target_host
AR=$target_host-ar
AS=$target_host-as
CC=$target_host-$cc_compiler
CXX=$target_host-$cxx_compiler
LD=$target_host-$cxx_compiler
OBJDUMP=$target_host-objdump
RANLIB=$target_host-ranlib
STRIP=$target_host-strip
[settings]
arch=x86_64
build_type=Debug
compiler=gcc
compiler.version=13
compiler.libcxx=libstdc++11
compiler.cppstd=20
os=baremetal
[options]
gcc:target_arch=x86_64
|