diff options
author | Lucas De Marchi <lucas.demarchi@intel.com> | 2018-09-12 13:24:12 -0700 |
---|---|---|
committer | Lucas De Marchi <lucas.demarchi@intel.com> | 2018-09-19 22:46:45 -0700 |
commit | ba808253bc16b481dbee69323d5a560b103d1091 (patch) | |
tree | 38f80c3fd6bf4e4333b87a93a83d2c08e500d4c1 /exynos | |
parent | 67967e9b5c0bb15eb7c95f060810d454c8eb6732 (diff) | |
download | libdrm-ba808253bc16b481dbee69323d5a560b103d1091.tar.gz libdrm-ba808253bc16b481dbee69323d5a560b103d1091.tar.bz2 libdrm-ba808253bc16b481dbee69323d5a560b103d1091.zip |
meson: make symbols hidden by default
Now that symbols that should be exported are annotated accordingly, make
all the rest hidden by default.
Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
Reviewed-by: Dylan Baker <dylan@pnwbakers.com>
Reviewed-by: Eric Engestrom <eric.engestrom@intel.com>
Diffstat (limited to 'exynos')
-rw-r--r-- | exynos/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exynos/meson.build b/exynos/meson.build index 30d36405..bdfc3fc6 100644 --- a/exynos/meson.build +++ b/exynos/meson.build @@ -21,7 +21,7 @@ libdrm_exynos = shared_library( 'drm_exynos', [files('exynos_drm.c', 'exynos_fimg2d.c'), config_file], - c_args : warn_c_args, + c_args : libdrm_c_args, include_directories : [inc_root, inc_drm], link_with : libdrm, dependencies : [dep_pthread_stubs], |