diff options
author | Daniel Dunbar <daniel@zuster.org> | 2008-08-30 01:16:19 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2008-08-30 01:16:19 +0000 |
commit | dcf114e8610784e15c89eed2ad3ca930fa0634ed (patch) | |
tree | fab38965d9c4d650460254a0174d61916f173d49 /Makefile.config.in | |
parent | c4db7276e0055931bb29942d12a10494f569e749 (diff) | |
download | external_llvm-dcf114e8610784e15c89eed2ad3ca930fa0634ed.zip external_llvm-dcf114e8610784e15c89eed2ad3ca930fa0634ed.tar.gz external_llvm-dcf114e8610784e15c89eed2ad3ca930fa0634ed.tar.bz2 |
Enable -fvisibility-inlines-hidden by default for compilers which
support it.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55557 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile.config.in')
-rw-r--r-- | Makefile.config.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile.config.in b/Makefile.config.in index f3a9346..5a0dcd5 100644 --- a/Makefile.config.in +++ b/Makefile.config.in @@ -234,6 +234,9 @@ ENABLE_THREADS := @ENABLE_THREADS@ # Do we want to build with position independent code? ENABLE_PIC := @ENABLE_PIC@ +# Use -fvisibility-inlines-hidden? +ENABLE_VISIBILITY_INLINES_HIDDEN := @ENABLE_VISIBILITY_INLINES_HIDDEN@ + # This option tells the Makefiles to produce verbose output. # It essentially prints the commands that make is executing #VERBOSE = 1 |