# SPDX-License-Identifier: CC0-1.0 language = 'C++' display = 'C++ IOI-Style(GNU++20) (GCC 14.2.0)' license = [ { name = 'GPL-3.0-or-later', url = 'https://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Copying.html' }, ] filename = 'Main.cpp' install = ''' sudo apt-get install -y g++-14 ''' compile = ''' g++-14 -DEVAL -std=gnu++20 -O2 -pipe -static -s -o a.out Main.cpp ''' object = 'a.out' execution = ['./a.out']