Add comments to the toolchain files

This commit is contained in:
David Hrdlička
2021-12-20 21:54:24 +01:00
parent 3f576ce6ca
commit 9e3ad3b79f
10 changed files with 166 additions and 27 deletions

View File

@@ -1,4 +1,19 @@
set(CMAKE_CONFIGURATION_TYPES Debug;Release;Optimized)
#
# 86Box A hypervisor and IBM PC system emulator that specializes in
# running old operating systems and software designed for IBM
# PC systems and compatibles from 1981 through fairly recent
# system designs based on the PCI bus.
#
# This file is part of the 86Box distribution.
#
# CMake toolchain file defining GCC compiler flags.
#
# Authors: David Hrdlička, <hrdlickadavid@outlook.com>
#
# Copyright 2021 David Hrdlička.
#
set(CMAKE_CONFIGURATION_TYPES Debug;Release;Optimized)
set(CMAKE_C_FLAGS_INIT "-fomit-frame-pointer -mstackrealign -Wall -fno-strict-aliasing")
set(CMAKE_CXX_FLAGS_INIT ${CMAKE_C_FLAGS_INIT})