blob: 4d2fb4a64eaaf07b62bc00ffeb35b34d1592b6ac [file] [log] [blame]
Benjamin Gordon1f4537f2019-12-06 09:10:56 -07001# -*- coding: utf-8 -*-
2# Copyright 2020 The Chromium OS Authors. All rights reserved.
3# Use of this source code is governed by a BSD-style license that can be
4# found in the LICENSE file.
5
6"""Run xz from PATH with a thread for each core in the system."""
7
8from __future__ import print_function
9
10import os
Mike Frysinger687ab9d2020-02-06 00:35:15 -050011import sys
12
13
14assert sys.version_info >= (3, 6), 'This module requires Python 3.6+'
Benjamin Gordon1f4537f2019-12-06 09:10:56 -070015
16
17def main(argv):
18 os.execvp('xz', ['xz', '-T0'] + argv)