aboutsummaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorEmmanuel Leblond2016-09-25 11:58:54 +0200
committerRémi Verschelde2016-10-09 17:21:33 +0200
commita5fe7ffbcd50c9b2de6eeec2cae1a6a67b2df038 (patch)
tree858dcc294ae841b97a594009db325a62c490d266 /SConstruct
parent02487a4be15ae6f8a851b1f0e5ce0e240dc32962 (diff)
downloadgodot-a5fe7ffbcd50c9b2de6eeec2cae1a6a67b2df038.tar.gz
godot-a5fe7ffbcd50c9b2de6eeec2cae1a6a67b2df038.tar.zst
godot-a5fe7ffbcd50c9b2de6eeec2cae1a6a67b2df038.zip
Add CC parameter to allow use of custom C compiler
(cherry picked from commit cfd17de23098297d076def400cd6d506700a5f03)
Diffstat (limited to '')
-rw-r--r--SConstruct3
1 files changed, 2 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct
index d168820f6..e08c46c51 100644
--- a/SConstruct
+++ b/SConstruct
@@ -138,7 +138,8 @@ opts.Add('etc1','etc1 Texture compression support (yes/no)','yes')
opts.Add('builtin_zlib','Use built-in zlib (yes/no)','yes')
opts.Add('openssl','Use OpenSSL (yes/no/builtin)','no')
opts.Add('musepack','Musepack Audio (yes/no)','yes')
-opts.Add("CXX", "Compiler");
+opts.Add("CXX", "C++ Compiler")
+opts.Add("CC", "C Compiler")
opts.Add("CCFLAGS", "Custom flags for the C++ compiler");
opts.Add("CFLAGS", "Custom flags for the C compiler");
opts.Add("LINKFLAGS", "Custom flags for the linker");