aboutsummaryrefslogtreecommitdiffstats
path: root/configure.py
diff options
context:
space:
mode:
authorSimon Warta <[email protected]>2017-04-14 01:07:03 +0200
committerSimon Warta <[email protected]>2017-04-18 09:36:25 +0200
commitf054f47e1edabe2bf680b7a3fe183a5e4821f8e4 (patch)
tree084cd199c7e2cd556e378d994c73f79659b2f9dc /configure.py
parentd82ec7c61f575f70326987cd7068f842f70494ba (diff)
Remove --chost
Closes #990
Diffstat (limited to 'configure.py')
-rwxr-xr-xconfigure.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/configure.py b/configure.py
index d3884df76..d3b7b10d2 100755
--- a/configure.py
+++ b/configure.py
@@ -262,8 +262,6 @@ def process_command_line(args): # pylint: disable=too-many-locals
help='set compiler ABI flags',
default='')
- target_group.add_option('--chost', help=optparse.SUPPRESS_HELP)
-
target_group.add_option('--with-endian', metavar='ORDER', default=None,
help='override byte order guess')
@@ -2629,15 +2627,6 @@ def main(argv=None):
print(k)
sys.exit(0)
- if options.chost:
- chost = options.chost.split('-')
-
- if options.cpu is None and len(chost) > 0:
- options.cpu = chost[0]
-
- if options.os is None and len(chost) > 2:
- options.os = '-'.join(chost[2:])
-
if options.os is None:
options.os = platform.system().lower()