forked from osquery/osquery
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
automatic mode selection (osquery#5369)
Summary: Pull Request resolved: osquery#5369 automatically select the appropriate config files based on the current platform and the flavor that was provided Reviewed By: fmanco, guliashvili Differential Revision: D13695981 fbshipit-source-id: acdb03bfe4e5d6a352e7a52d5b9812c0e1b05010
- Loading branch information
1 parent
039b402
commit e401a5e
Showing
1 changed file
with
54 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
#!/usr/bin/env python2 | ||
|
||
import sys | ||
import argparse | ||
import platform | ||
import itertools | ||
|
||
|
||
PLATFORM_CXX_FLAGS = { | ||
'linux': { | ||
'release': ['//tools/buckconfigs/linux-x86_64/toolchain/ubuntu-18.04-clang.bcfg', '//tools/buckconfigs/linux-x86_64/type/release.bcfg', '//tools/buckconfigs/linux-x86_64/base.bcfg', '//tools/buckconfigs/base.bcfg'], | ||
'debug': ['//tools/buckconfigs/linux-x86_64/toolchain/ubuntu-18.04-clang.bcfg', '//tools/buckconfigs/linux-x86_64/type/debug.bcfg', '//tools/buckconfigs/linux-x86_64/base.bcfg', '//tools/buckconfigs/base.bcfg'], | ||
}, | ||
'freebsd': { | ||
'release': ['//tools/buckconfigs/freebsd-x86_64/toolchain/freebsd-11.2-clang.bcfg', '//tools/buckconfigs/freebsd-x86_64/type/release.bcfg', '//tools/buckconfigs/freebsd-x86_64/base.bcfg', '//tools/buckconfigs/base.bcfg'], | ||
'debug': ['//tools/buckconfigs/freebsd-x86_64/toolchain/freebsd-11.2-clang.bcfg', '//tools/buckconfigs/freebsd-x86_64/type/debug.bcfg', '//tools/buckconfigs/freebsd-x86_64/base.bcfg', '//tools/buckconfigs/base.bcfg'], | ||
}, | ||
'darwin': { | ||
'release': ['//tools/buckconfigs/macos-x86_64/type/release.bcfg', '//tools/buckconfigs/macos-x86_64/base.bcfg', '//tools/buckconfigs/base.bcfg'], | ||
'debug': ['//tools/buckconfigs/macos-x86_64/type/debug.bcfg', '//tools/buckconfigs/macos-x86_64/base.bcfg', '//tools/buckconfigs/base.bcfg'], | ||
}, | ||
'windows': { | ||
'release': ['//tools/buckconfigs/windows-x86_64/toolchain/vs2017_15.5.bcfg', '//tools/buckconfigs/windows-x86_64/type/release.bcfg', '//tools/buckconfigs/windows-x86_64/python/default.bcfg', '//tools/buckconfigs/windows-x86_64/base.bcfg', '//tools/buckconfigs/base.bcfg'], | ||
'debug': ['//tools/buckconfigs/windows-x86_64/toolchain/vs2017_15.5.bcfg', '//tools/buckconfigs/windows-x86_64/type/debug.bcfg', '//tools/buckconfigs/windows-x86_64/python/default.bcfg', '//tools/buckconfigs/windows-x86_64/base.bcfg', '//tools/buckconfigs/base.bcfg'], | ||
}, | ||
} | ||
|
||
SUPPORTED_FLAVORS = {e for entry in PLATFORM_CXX_FLAGS.values() for e in entry} | ||
|
||
|
||
def generate(flavors): | ||
osType, _, _, _, _, _ = platform.uname() | ||
osType = osType.lower() | ||
if osType not in PLATFORM_CXX_FLAGS: | ||
raise Exception('Platform {} not supported!'.format(osType)) | ||
return itertools.chain.from_iterable([PLATFORM_CXX_FLAGS[osType][flavor] for flavor in flavors]) | ||
|
||
|
||
if __name__ == '__main__': | ||
parser = argparse.ArgumentParser(description='Automatically set the proper config files for buck. This is selected based on the platform') | ||
parser.add_argument('--flavors', dest='flavors', action='store', type=str, help='comma seperated list of flavors. Currently supported: release and debug') | ||
|
||
if len(sys.argv) == 1: | ||
parser.print_help(sys.stderr) | ||
sys.exit(1) | ||
|
||
args = parser.parse_args() | ||
flavors = {flavor.lower() for flavor in args.flavors.split(',')} | ||
if len(flavors - SUPPORTED_FLAVORS) > 0: | ||
print('Invalid flavors were given: {}\n'.format(','.join(flavors - SUPPORTED_FLAVORS))) | ||
parser.print_help(sys.stderr) | ||
else: | ||
configs = ['--config-file\n{}'.format(config) for config in generate(flavors)] | ||
print('\n'.join(configs)) |