build: Use -fvisibility 60/296460/1
authorSeunghun Lee <shiin.lee@samsung.com>
Wed, 19 Jul 2023 01:37:27 +0000 (10:37 +0900)
committerTizen Window System <tizen.windowsystem@gmail.com>
Fri, 28 Jul 2023 05:21:16 +0000 (14:21 +0900)
This makes all the exported symbols hidden by default.

Change-Id: I6f2b127da4e8f83d04e8d97eba7371bcb590542e

meson.build

index 22f625e..a6f2d55 100644 (file)
@@ -11,7 +11,10 @@ project('libds',
 
 cc = meson.get_compiler('c')
 
-global_args = []
+global_args = cc.get_supported_arguments(
+  '-fvisibility=hidden',
+)
+
 global_args_maybe = [
   '-Wno-unused-parameter',
   '-Wno-pedantic',