diff options
author | Simon Warta <[email protected]> | 2017-01-02 23:34:14 +0100 |
---|---|---|
committer | Simon Warta <[email protected]> | 2017-01-03 00:14:20 +0100 |
commit | cfcc24e9d54a5b3c31de8b4a82e55f4ac55ecb82 (patch) | |
tree | 917e5cb7d0cb467ab85906c13f6468e1d2a14ab8 /configure.py | |
parent | 4536a57020cdfb1c58316375999d3e50be704e92 (diff) |
Add os ios
Diffstat (limited to 'configure.py')
-rwxr-xr-x | configure.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.py b/configure.py index c5e7fcd06..14b995826 100755 --- a/configure.py +++ b/configure.py @@ -2150,7 +2150,7 @@ def main(argv = None): options.compiler = 'gcc' else: options.compiler = 'msvc' - elif options.os == 'darwin' or options.os == 'freebsd': + elif options.os in ['darwin', 'freebsd', 'ios']: if have_program('clang++'): options.compiler = 'clang' elif options.os == 'openbsd': |