2024-01-17 15:10:32 +00:00
|
|
|
# Copyright (C) 2023-2023 Huawei Device Co., Ltd.
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
2023-12-21 11:08:59 +00:00
|
|
|
|
|
|
|
config("cast_engine_default_config") {
|
|
|
|
cflags = [
|
|
|
|
"-Wall",
|
|
|
|
"-Wextra",
|
|
|
|
"-Werror",
|
|
|
|
"-Wno-shadow",
|
|
|
|
"-Wno-unused-parameter",
|
|
|
|
"-Wno-missing-field-initializers",
|
|
|
|
"-FS",
|
|
|
|
"-O2",
|
|
|
|
"-D_FORTIFY_SOURCE=2",
|
|
|
|
"-fvisibility=hidden",
|
2024-04-16 01:29:01 +00:00
|
|
|
"-fvisibility-inlines-hidden"
|
2023-12-21 11:08:59 +00:00
|
|
|
]
|
|
|
|
cflags_cc = cflags
|
2024-04-16 01:29:01 +00:00
|
|
|
ldflags = [ "-Werror" ]
|
2023-12-21 11:08:59 +00:00
|
|
|
}
|