From 87a57ea67014c5768a911d71ecd4a985b90e26f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Tue, 9 Jan 2024 10:09:34 +0100 Subject: [PATCH] Rename SCons command line options for CCFLAGS, etc. to lowercase Matching the changes in https://github.com/godotengine/godot/pull/86964. --- .../development/compiling/introduction_to_the_buildsystem.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contributing/development/compiling/introduction_to_the_buildsystem.rst b/contributing/development/compiling/introduction_to_the_buildsystem.rst index 941711c1b1f..08cb8c5e2f2 100644 --- a/contributing/development/compiling/introduction_to_the_buildsystem.rst +++ b/contributing/development/compiling/introduction_to_the_buildsystem.rst @@ -237,7 +237,7 @@ Several compiler optimization levels can be chosen from: build times, but the slowest execution times. - ``optimize=custom`` *(advanced users only)*: Do not pass optimization arguments to the C/C++ compilers. You will have to pass arguments manually - using the ``CFLAGS``, ``CCFLAGS`` and ``CXXFLAGS`` SCons options. + using the ``cflags``, ``ccflags`` and ``cxxflags`` SCons options. Architecture ------------