BUILD.gn 10.9 KB
Newer Older
M
mamingshuai 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
# Copyright (c) 2013-2019 Huawei Technologies Co., Ltd. All rights reserved.
# Copyright (c) 2020-2021 Huawei Device Co., Ltd. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without modification,
# are permitted provided that the following conditions are met:
#
# 1. Redistributions of source code must retain the above copyright notice, this list of
#    conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright notice, this list
#    of conditions and the following disclaimer in the documentation and/or other materials
#    provided with the distribution.
#
# 3. Neither the name of the copyright holder nor the names of its contributors may be used
#    to endorse or promote products derived from this software without specific prior written
#    permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

import("//build/lite/config/component/lite_component.gni")
31

C
Caoruihong 已提交
32 33
LITEOS_MENUCONFIG_H = rebase_path("$root_out_dir/config.h")

34 35
declare_args() {
  tee_enable = false
C
Caoruihong 已提交
36
  liteos_name = "OHOS_Image"
Z
zhushengle 已提交
37
  liteos_container_enable = false
38
  liteos_skip_make = false
39
  liteos_is_mini = false
40 41 42 43 44 45 46
}

tee = ""
if (tee_enable) {
  tee = "_tee"
}

47 48 49 50
declare_args() {
  liteos_config_file = "${ohos_build_type}${tee}.config"
}

A
arvinzzz 已提交
51 52
liteos_config_file =
    rebase_path(liteos_config_file, "", "$product_path/kernel_configs")
53 54 55
print("liteos_config_file:", liteos_config_file)

exec_script("//build/lite/run_shell_cmd.py",
A
arvinzzz 已提交
56 57 58 59 60 61 62 63
            [ "env" + " CONFIG_=LOSCFG_" + " KCONFIG_CONFIG_HEADER='y=true'" +
                  " KCONFIG_CONFIG=$liteos_config_file" +
                  " DEVICE_PATH=$device_path" + " srctree=" + rebase_path(".") +
                  " genconfig" + " --header-path $LITEOS_MENUCONFIG_H" +
                  " --file-list kconfig_files.txt" +
                  " --env-list kconfig_env.txt" + " --config-out config.gni" ],
            "",
            [ liteos_config_file ])
64 65

import("liteos.gni")
M
mamingshuai 已提交
66

67 68 69
assert(ARCH != "", "ARCH not set!")
assert(ARCH == arch, "ARCH not match! details: $ARCH != $arch")
assert(tee_enable == defined(LOSCFG_TEE_ENABLE), "TEE switch not match!")
C
Caoruihong 已提交
70 71
assert(ohos_build_compiler == "clang" == defined(LOSCFG_COMPILER_CLANG_LLVM),
       "compiler not match!")
72

M
mamingshuai 已提交
73 74 75
generate_notice_file("kernel_notice_file") {
  module_name = "kernel"
  module_source_dir_list = [
76 77 78 79 80 81 82
    "$LITEOSTHIRDPARTY/FreeBSD",
    "$LITEOSTHIRDPARTY/musl",
    "$LITEOSTHIRDPARTY/zlib",
    "$LITEOSTHIRDPARTY/FatFs",
    "$LITEOSTHIRDPARTY/lwip",
    "$LITEOSTHIRDPARTY/NuttX",
    "$LITEOSTHIRDPARTY/mtd-utils",
M
mamingshuai 已提交
83 84 85
  ]
}

86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
liteos_arch_cflags = []
if (defined(LOSCFG_ARCH_ARM)) {
  mcpu = LOSCFG_ARCH_CPU
  if (defined(LOSCFG_ARCH_ARM_AARCH64) && defined(LOSCFG_ARCH_FPU_DISABLE)) {
    mcpu += "+nofp"
  }
  liteos_arch_cflags += [ "-mcpu=$mcpu" ]
  if (defined(LOSCFG_ARCH_ARM_AARCH32)) {
    liteos_arch_cflags += [
      "-mfloat-abi=softfp",
      "-mfpu=$LOSCFG_ARCH_FPU",
    ]
  }
}

cc = "$ohos_current_cc_command " + string_join(" ", liteos_arch_cflags)
if (ohos_build_compiler == "clang") {
  cc += " --target=$target_triple"
}

config("arch_config") {
  cflags = liteos_arch_cflags
  asmflags = cflags
  ldflags = cflags
C
Caoruihong 已提交
110 111
  if (defined(LOSCFG_ARCH_ARM_AARCH32)) {
    if (!defined(LOSCFG_COMPILER_CLANG_LLVM)) {
A
arvinzzz 已提交
112
      cflags += [ "-mthumb-interwork" ]
C
Caoruihong 已提交
113 114 115 116 117 118 119 120 121 122
    }
  }
  if (defined(LOSCFG_THUMB)) {
    cflags += [ "-mthumb" ]
    if (defined(LOSCFG_COMPILER_CLANG_LLVM)) {
      cflags += [ "-mimplicit-it=thumb" ]
    } else {
      cflags += [ "-Wa,-mimplicit-it=thumb" ]
    }
  }
123 124
}

C
Caoruihong 已提交
125
config("stdinc_config") {
A
arvinzzz 已提交
126 127 128
  std_include = exec_script("//build/lite/run_shell_cmd.py",
                            [ "$cc -print-file-name=include" ],
                            "trim string")
129 130 131 132
  cflags = [
    "-isystem",
    std_include,
  ]
133 134 135
  if (!defined(LOSCFG_LIBC_NEWLIB)) {
    cflags += [ "-nostdinc" ]
  }
136
  asmflags = cflags
137 138
}

C
Caoruihong 已提交
139 140 141 142 143 144 145 146 147 148 149 150 151 152
config("ssp_config") {
  cflags = []
  if (defined(LOSCFG_CC_STACKPROTECTOR_ALL)) {
    cflags += [ "-fstack-protector-all" ]
  } else if (defined(LOSCFG_CC_STACKPROTECTOR_STRONG)) {
    cflags += [ "-fstack-protector-strong" ]
  } else if (defined(LOSCFG_CC_STACKPROTECTOR)) {
    cflags += [
      "-fstack-protector",
      "--param",
      "ssp-buffer-size=4",
    ]
  } else {
    cflags += [ "-fno-stack-protector" ]
C
Caoruihong 已提交
153
  }
C
Caoruihong 已提交
154
  asmflags = cflags
155 156
}

C
Caoruihong 已提交
157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174
config("optimize_config") {
  cflags = []
  if (defined(LOSCFG_COMPILE_DEBUG)) {
    cflags += [
      "-g",
      "-gdwarf-2",
    ]
    optimization_cflag = "-O0"
  }
  if (defined(LOSCFG_COMPILE_OPTIMIZE)) {
    optimization_cflag = "-O2"
  }
  if (defined(LOSCFG_COMPILE_OPTIMIZE_SIZE)) {
    if (defined(LOSCFG_COMPILER_CLANG_LLVM)) {
      optimization_cflag = "-Oz"
    } else {
      optimization_cflag = "-Os"
    }
175 176 177 178 179
  }
  if (defined(LOSCFG_COMPILE_LTO)) {
    if (defined(LOSCFG_COMPILER_CLANG_LLVM)) {
      cflags += [ "-flto=thin" ]
    } else {
C
Caoruihong 已提交
180
      #cflags += [ "-flto" ]
181
    }
C
Caoruihong 已提交
182 183 184
  }
  cflags += [ optimization_cflag ]
  asmflags = cflags
185 186
}

C
Caoruihong 已提交
187
config("kconfig_config") {
188 189 190 191
  cflags = [
    "-imacros",
    "$LITEOS_MENUCONFIG_H",
  ]
C
Caoruihong 已提交
192 193 194 195 196 197 198 199 200 201 202
  asmflags = cflags
}

config("warn_config") {
  cflags = [
    "-Wall",
    "-Werror",
    "-Wpointer-arith",
    "-Wstrict-prototypes",
    "-Winvalid-pch",
  ]
C
Caoruihong 已提交
203 204 205
  if (defined(LOSCFG_COMPILER_CLANG_LLVM)) {
    cflags += [ "-Wno-address-of-packed-member" ]
  }
C
Caoruihong 已提交
206 207
  asmflags = cflags
}
208

C
Caoruihong 已提交
209 210 211 212 213 214
config("dialect_config") {
  cflags_c = [ "-std=c99" ]
  cflags_cc = [ "-std=c++11" ]
}

config("misc_config") {
215
  defines = [ "__LITEOS__" ]
C
Caoruihong 已提交
216
  defines += [ "__LITEOS_A__" ]
217 218 219
  if (!defined(LOSCFG_DEBUG_VERSION)) {
    defines += [ "NDEBUG" ]
  }
220

C
Caoruihong 已提交
221
  cflags = [
222 223 224 225 226 227 228 229 230 231 232
    "-fno-pic",
    "-fno-builtin",
    "-fms-extensions",
    "-fno-strict-aliasing",
    "-fno-common",
    "-fsigned-char",
    "-ffunction-sections",
    "-fdata-sections",
    "-fno-exceptions",
    "-fno-omit-frame-pointer",
    "-fno-short-enums",
C
Caoruihong 已提交
233
    "-mno-unaligned-access",
234 235 236 237
  ]

  if (!defined(LOSCFG_COMPILER_CLANG_LLVM)) {
    cflags += [ "-fno-aggressive-loop-optimizations" ]
M
mamingshuai 已提交
238
  }
239 240 241 242

  asmflags = cflags
}

Z
zhushengle 已提交
243 244 245 246 247 248 249 250 251 252
config("container_config") {
  if (liteos_container_enable) {
    cflags = [
      "-DLOSCFG_KERNEL_CONTAINER",
      "-DLOSCFG_PID_CONTAINER",
      "-DLOSCFG_UTS_CONTAINER",
      "-DLOSCFG_MNT_CONTAINER",
      "-DLOSCFG_CHROOT",
      "-DLOSCFG_IPC_CONTAINER",
      "-DLOSCFG_TIME_CONTAINER",
Z
zhushengle 已提交
253
      "-DLOSCFG_USER_CONTAINER",
Z
zhushengle 已提交
254 255 256 257 258
      "-DLOSCFG_PROC_PROCESS_DIR",
    ]
  }
}

259 260 261
config("los_config") {
  configs = [
    ":arch_config",
C
Caoruihong 已提交
262 263 264 265 266 267 268
    ":kconfig_config",
    ":stdinc_config",
    ":dialect_config",
    ":optimize_config",
    ":ssp_config",
    ":warn_config",
    ":misc_config",
Z
zhushengle 已提交
269
    ":container_config",
270 271 272
  ]
}

C
Caoruihong 已提交
273 274
cmd = "if [ -f $device_path/BUILD.gn ]; then echo true; else echo false; fi"
HAVE_DEVICE_SDK = exec_script("//build/lite/run_shell_cmd.py", [ cmd ], "value")
275

C
Caoruihong 已提交
276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299
config("public") {
  configs = [
    "arch:public",
    "kernel:public",
    "compat:public",
    "bsd:public",
    "fs:public",
    "drivers:public",
    "security:public",
    "net:public",
    "shell:public",
    "lib:public",
  ]

  configs += [
    "$HDFTOPDIR:public",
    "//drivers/liteos:public",
  ]

  if (HAVE_DEVICE_SDK) {
    configs += [ "$device_path:public" ]
  }
}

300 301 302 303 304 305 306 307 308 309 310 311 312
group("modules") {
  deps = [
    "arch",
    "bsd",
    "compat",
    "drivers",
    "fs",
    "kernel",
    "lib",
    "net",
    "security",
    "shell",
    "syscall",
313
    "testsuites/kernel:kernel_test",
314
  ]
C
Caoruihong 已提交
315 316 317

  deps += [
    "//drivers/liteos",
A
arvinzzz 已提交
318
    HDFTOPDIR,
C
Caoruihong 已提交
319 320 321 322 323
  ]

  if (HAVE_DEVICE_SDK) {
    deps += [ device_path ]
  }
324 325 326 327 328 329 330 331 332 333 334
}

group("apps") {
  deps = [ "apps" ]
}

group("tests") {
  deps = [ "testsuites" ]
}

group("kernel") {
C
Caoruihong 已提交
335
  deps = [ ":build_kernel_image" ]
336 337 338
}

group("liteos_a") {
339 340 341 342 343
  deps = [ ":kernel" ]
  if (!liteos_is_mini) {
    deps += [
      ":apps",
      ":tests",
A
arvinzzz 已提交
344
      "//third_party/musl/scripts/build_lite:strip",
345 346 347 348
    ]
    if (liteos_skip_make == false) {
      deps += [ ":make" ]
    }
349
  }
C
Caoruihong 已提交
350 351 352 353 354 355 356 357 358 359 360 361 362 363 364
}

executable("liteos") {
  configs = []  # clear default configs
  configs += [ ":arch_config" ]
  configs += [ ":public" ]

  ldflags = [
    "-static",
    "-nostdlib",
    "-Wl,--gc-sections",
    "-Wl,-Map=$liteos_name.map",
    "-Wl,--no-eh-frame-hdr",
  ]

365 366 367 368 369 370 371 372 373 374 375
  if (defined(LOSCFG_LIBC_NEWLIB)) {
    ldflags += [
      "-Wl,--wrap=_free_r",
      "-Wl,--wrap,_malloc_usable_size_r",
      "-Wl,--wrap,_malloc_r",
      "-Wl,--wrap,_memalign_r",
      "-Wl,--wrap,_realloc_r",
      "-Wl,--wrap,_fseeko_r",
    ]
    ldflags -= [ "-nostdlib" ]
  }
C
Caoruihong 已提交
376 377 378 379 380 381 382 383 384 385 386
  libgcc = exec_script("//build/lite/run_shell_cmd.py",
                       [ "$cc -print-libgcc-file-name" ],
                       "trim string")
  libs = [ libgcc ]
  if (defined(LOSCFG_COMPILER_CLANG_LLVM)) {
    ldflags +=
        [ "-Wl,-T" + rebase_path("tools/build/liteos_llvm.ld", root_build_dir) ]
    inputs = [ "tools/build/liteos_llvm.ld" ]
  } else {
    ldflags +=
        [ "-Wl,-T" + rebase_path("tools/build/liteos.ld", root_build_dir) ]
387
    ldflags += [ "-nostartfiles" ]
C
Caoruihong 已提交
388 389 390 391 392 393 394
    inputs = [ "tools/build/liteos.ld" ]
  }

  inputs += [ "$root_out_dir/board.ld" ]

  output_dir = target_out_dir

395
  deps = [
C
Caoruihong 已提交
396 397
    ":modules",
    "platform:copy_board.ld",
398
  ]
M
mamingshuai 已提交
399 400
}

C
Caoruihong 已提交
401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419
copy("copy_liteos") {
  deps = [ ":liteos" ]
  sources = [ "$target_out_dir/unstripped/bin/liteos" ]
  outputs = [ "$root_out_dir/$liteos_name" ]
}

build_ext_component("build_kernel_image") {
  deps = [ ":copy_liteos" ]
  exec_path = rebase_path(root_out_dir)

  objcopy = "${compile_prefix}objcopy$toolchain_cmd_suffix"
  objdump = "${compile_prefix}objdump$toolchain_cmd_suffix"

  command = "$objcopy -O binary $liteos_name $liteos_name.bin"
  command +=
      " && sh -c '$objdump -t $liteos_name | sort >$liteos_name.sym.sorted'"
  command += " && sh -c '$objdump -d $liteos_name >$liteos_name.asm'"
}

M
mamingshuai 已提交
420 421
build_ext_component("make") {
  exec_path = rebase_path(".", root_build_dir)
422
  outdir = rebase_path("$target_out_dir/${target_name}_out")
423 424
  sysroot_path = rebase_path(ohos_current_sysroot)
  arch_cflags = string_join(" ", target_arch_cflags)
425 426
  command = "./build.sh \"$board_name\" \"$ohos_build_compiler\" \"$root_build_dir\" \"$ohos_build_type\" \"$tee_enable\""
  command += " \"$device_company\" \"$product_path\" \"$outdir\" \"$ohos_version\" \"$sysroot_path\" \"$arch_cflags\""
427
  command += " \"$device_path\" \"$compile_prefix\" \"$liteos_config_file\""
428 429 430 431
  if (liteos_skip_make) {
    print("build_ext_component \"$target_name\" skipped:", command)
    command = "true"
  }
M
mamingshuai 已提交
432
}