mirror of
https://github.com/hardkernel/kernel_common_drivers.git
synced 2026-06-25 12:03:48 +09:00
c1334247fd
PD#SWPL-195922 Problem: No amfc driver on 6.12 Solution: add it Verify: local Change-Id: I781fad57d8d0ecee60a9157a628fef23c2f2c76b Signed-off-by: Tao Zeng <tao.zeng@amlogic.com>
26 lines
652 B
Plaintext
26 lines
652 B
Plaintext
module libzstd [extern_c] {
|
|
header "zstd.h"
|
|
export *
|
|
config_macros [exhaustive] /* zstd.h */ \
|
|
ZSTD_STATIC_LINKING_ONLY, \
|
|
ZSTDLIB_VISIBLE, \
|
|
ZSTD_DLL_EXPORT, \
|
|
ZSTDLIB_STATIC_API, \
|
|
ZSTD_DISABLE_DEPRECATE_WARNINGS, \
|
|
ZSTD_CLEVEL_DEFAULT, \
|
|
/* zdict.h */ ZDICT_STATIC_LINKING_ONLY, \
|
|
ZDICTLIB_VISIBILITY, \
|
|
ZDICT_DISABLE_DEPRECATE_WARNINGS, \
|
|
/* zstd_errors.h */ ZSTDERRORLIB_VISIBILITY
|
|
|
|
module dictbuilder [extern_c] {
|
|
header "zdict.h"
|
|
export *
|
|
}
|
|
|
|
module errors [extern_c] {
|
|
header "zstd_errors.h"
|
|
export *
|
|
}
|
|
}
|