summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2016-09-26 09:44:42 +0200
committerGitHub <noreply@github.com>2016-09-26 09:44:42 +0200
commita3c7988e8ed3fa876fb9a6984583fe39dd627580 (patch)
treea2f557614ccaf2a93846a555c0dbaf4296307def
parent20c7b65b7e3630ada9f2e8b6b64926ec05d68c4c (diff)
parentcfd17de23098297d076def400cd6d506700a5f03 (diff)
Merge pull request #6604 from touilleMan/patch-1
Add CC parameter to allow use of custom C compiler
-rw-r--r--SConstruct3
1 files changed, 2 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct
index d168820f66..e08c46c51e 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");