You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
642 B

/*
* Copyright (c) Hisilicon Technologies Co., Ltd.. 2020-2020. All rights reserved.
* Description: Strictly control the compilation options not including options beginning with -Wno
* Author: os_build
* Create: 2020-03-05
*/
package config
var (
Dirprefix string = "vendor/huanglong/"
//Strictly controlled code paths
StrictControlCodePaths = []string{
"vendor/huanglong",
}
//Shield code paths
ShieldStrictControlCodePaths = []string{
Dirprefix + "binary",
Dirprefix + "binary_url",
Dirprefix + "bootloader",
Dirprefix + "build",
}
)