Skip to content

Commit d58983f

Browse files
committed
Temporarily freeze v850 at GCC 14.2.0
1 parent 04d8f07 commit d58983f

2 files changed

Lines changed: 7 additions & 6 deletions

File tree

ref_app/src/util/STL/cinttypes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#ifndef CINTTYPES_2021_10_19_
99
#define CINTTYPES_2021_10_19_
1010

11-
#if (defined(__GNUC__) && defined(__RL78__))
11+
#if (defined(__GNUC__) && (defined(__RL78__) || defined(__v850__)))
1212
#include <stdint-gcc.h>
1313
#else
1414
#include <inttypes.h>

ref_app/target/micros/v850es_fx2/make/v850es_fx2_flags.gmk

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright Christopher Kormanyos 2014 - 2024.
2+
# Copyright Christopher Kormanyos 2014 - 2025.
33
# Distributed under the Boost Software License,
44
# Version 1.0. (See accompanying file LICENSE_1_0.txt
55
# or copy at http://www.boost.org/LICENSE_1_0.txt)
@@ -9,7 +9,7 @@
99
# compiler flags for the target architecture
1010
# ------------------------------------------------------------------------------
1111

12-
GCC_VERSION = 13.2.0
12+
GCC_VERSION = 14.2.0
1313
GCC_TARGET = v850-unknown-elf
1414
GCC_PREFIX = v850-unknown-elf
1515

@@ -23,13 +23,14 @@ TGT_ALLFLAGS = -Os \
2323
-mzda=0 \
2424
-msda=0 \
2525
-finline-functions \
26-
-finline-limit=32
26+
-finline-limit=32 \
27+
-ffreestanding
2728

28-
TGT_CFLAGS = -std=c99 \
29+
TGT_CFLAGS = -std=c11 \
2930
-Wunsuffixed-float-constants \
3031
$(TGT_ALLFLAGS)
3132

32-
TGT_CXXFLAGS = -std=c++14 \
33+
TGT_CXXFLAGS = -std=c++23 \
3334
$(TGT_ALLFLAGS)
3435

3536
TGT_INCLUDES = -isystem $(PATH_APP)/util/STL

0 commit comments

Comments
 (0)