From 68db123a2f37a66aea218fa48a5bab8ea6b12951 Mon Sep 17 00:00:00 2001 From: "felix.morgner@ost.ch" Date: Sat, 7 Oct 2023 10:45:45 +0200 Subject: x86_64: implement first bootable kernel --- .conan/profiles/x86_64-gcc | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .conan/profiles/x86_64-gcc (limited to '.conan') diff --git a/.conan/profiles/x86_64-gcc b/.conan/profiles/x86_64-gcc new file mode 100644 index 0000000..1c29e8d --- /dev/null +++ b/.conan/profiles/x86_64-gcc @@ -0,0 +1,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 -- cgit v1.2.3