blob: 36f07eb5287b13da16aec2a629c9abde0d58a8b1 [file] [log] [blame]
# Copyright 2022 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
config("config") {
cflags = [ "-fPIC" ]
ldflags = [ "-nolibc" ]
}
executable("default_init") {
sources = [ "init.cc" ]
disable_syslog_backend = true
exclude_toolchain_tags = [ "instrumented" ]
configs += [
"//build/config/fuchsia:no_cpp_standard_library",
"//build/config/fuchsia:static-pie-config",
":config",
]
}