diff --git a/ReadMe.md b/ReadMe.md index e99e1b9dd..fe0cfc12f 100644 --- a/ReadMe.md +++ b/ReadMe.md @@ -190,6 +190,9 @@ There are 3 methods to install Xtreme, we recommend you use the **Web Updater**,

Build it yourself:

+> **Warning** +> We will not give basic support for compiling in our server. This is intended for people that already *know* what they are doing! + ```bash To download the needed tools: $ git clone --recursive https://github.com/ClaraCrazy/Flipper-Xtreme.git diff --git a/lib/flipper_application/elf/elf_file.c b/lib/flipper_application/elf/elf_file.c index 605b62186..9f37fc4e0 100644 --- a/lib/flipper_application/elf/elf_file.c +++ b/lib/flipper_application/elf/elf_file.c @@ -559,7 +559,6 @@ static SectionType elf_preload_section( name = name + strlen(".fast.rel"); ELFSection* section_p = elf_file_get_or_put_section(elf, name); section_p->fast_rel = malloc(sizeof(ELFSection)); - FURI_LOG_I(TAG, "Fast rel section size: %ld", section_header->sh_size); if(!elf_load_section_data(elf, section_p->fast_rel, section_header)) { FURI_LOG_E(TAG, "Error loading section '%s'", name); diff --git a/scripts/toolchain/fbtenv.cmd b/scripts/toolchain/fbtenv.cmd index 9d45b7e9d..4ae04e2a2 100644 --- a/scripts/toolchain/fbtenv.cmd +++ b/scripts/toolchain/fbtenv.cmd @@ -13,7 +13,7 @@ if not ["%FBT_NOENV%"] == [""] ( exit /b 0 ) -set "FLIPPER_TOOLCHAIN_VERSION=21" +set "FLIPPER_TOOLCHAIN_VERSION=22" if ["%FBT_TOOLCHAIN_PATH%"] == [""] ( set "FBT_TOOLCHAIN_PATH=%FBT_ROOT%" diff --git a/scripts/toolchain/fbtenv.sh b/scripts/toolchain/fbtenv.sh index d911c2334..81df6c0af 100755 --- a/scripts/toolchain/fbtenv.sh +++ b/scripts/toolchain/fbtenv.sh @@ -4,7 +4,7 @@ # public variables DEFAULT_SCRIPT_PATH="$(pwd -P)"; -FBT_TOOLCHAIN_VERSION="${FBT_TOOLCHAIN_VERSION:-"21"}"; +FBT_TOOLCHAIN_VERSION="${FBT_TOOLCHAIN_VERSION:-"22"}"; if [ -z ${FBT_TOOLCHAIN_PATH+x} ] ; then FBT_TOOLCHAIN_PATH_WAS_SET=0;