From d8335fb03273d46262b40c0dd53d94ef7e275814 Mon Sep 17 00:00:00 2001 From: John Ericson Date: Wed, 31 Jul 2019 14:10:30 -0400 Subject: Put native file before cross file in options list I think this makes more sense by matching how build comes before host. Native builds are also more common than cross builds. --- mesonbuild/msetup.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'mesonbuild/msetup.py') diff --git a/mesonbuild/msetup.py b/mesonbuild/msetup.py index 4e6f401..13df6ea 100644 --- a/mesonbuild/msetup.py +++ b/mesonbuild/msetup.py @@ -32,14 +32,14 @@ from .mesonlib import MesonException def add_arguments(parser): coredata.register_builtin_arguments(parser) - parser.add_argument('--cross-file', - default=[], - action='append', - help='File describing cross compilation environment.') parser.add_argument('--native-file', default=[], action='append', help='File containing overrides for native compilation environment.') + parser.add_argument('--cross-file', + default=[], + action='append', + help='File describing cross compilation environment.') parser.add_argument('-v', '--version', action='version', version=coredata.version) parser.add_argument('--profile-self', action='store_true', dest='profile', -- cgit v1.1