diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2018-08-09 19:46:45 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2018-08-09 19:46:49 +0300 |
commit | fb2cdd0fe2797b30e1fd4c118407302402739a3b (patch) | |
tree | 8a79a935ddd1bfd181075a153f6fabf4bd482586 /mesonbuild/backend/ninjabackend.py | |
parent | d7d948db0d9b8801afdde4f8867e4e3b94363af2 (diff) | |
download | meson-fb2cdd0fe2797b30e1fd4c118407302402739a3b.zip meson-fb2cdd0fe2797b30e1fd4c118407302402739a3b.tar.gz meson-fb2cdd0fe2797b30e1fd4c118407302402739a3b.tar.bz2 |
Call it gnu_symbol_visibility instead.
Diffstat (limited to 'mesonbuild/backend/ninjabackend.py')
-rw-r--r-- | mesonbuild/backend/ninjabackend.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/backend/ninjabackend.py b/mesonbuild/backend/ninjabackend.py index f88c589..9dcf0fa 100644 --- a/mesonbuild/backend/ninjabackend.py +++ b/mesonbuild/backend/ninjabackend.py @@ -1952,7 +1952,7 @@ rule FORTRAN_DEP_HACK%s # various sources in the order in which they must override each other commands = CompilerArgs(compiler) # Start with symbol visibility. - commands += compiler.symbol_visibility_args(target.symbol_visibility) + commands += compiler.gnu_symbol_visibility_args(target.gnu_symbol_visibility) # Add compiler args for compiling this target derived from 'base' build # options passed on the command-line, in default_options, etc. # These have the lowest priority. |