1#!/usr/bin/env python3 2# coding=utf-8 3# The build entrance of UniProton. 4# Copyright © Huawei Technologies Co., Ltd. 2010-2020. All rights reserved. 5import os 6 7 8build_dir = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) 9home_path = os.path.dirname(build_dir) 10config_dir = os.path.join(home_path,'config.xml') 11kbuild_path = '%s/cmake/common/build_auxiliary_script' % home_path 12 13cpus_ = {'all': ['clean', 'm4'], 14 'clean':['clean'], 15 'm4': ['m4'] 16 } 17 18cpu_plat = {'m4': ['cortex'] 19 } 20