Last active
December 19, 2015 02:39
-
-
Save klmr/5884628 to your computer and use it in GitHub Desktop.
Comparison of compilation with and without visibility=hidden
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ time g++-4.8 -std=c++0x -pedantic -Wall -Wextra -Werror -fvisibility=hidden -fvisibility-inlines-hidden -O0 -o test test.cpp | |
real 2m2.243s | |
user 1m59.593s | |
sys 0m2.444s | |
$ ll test | |
-rwxr-xr-x 1 rudolph staff 8678736 28 Jun 14:19 test | |
$ time g++-4.8 -std=c++0x -isystem/usr/local/include -pedantic -Wall -Wextra -Werror -O0 -o test test.cpp | |
real 2m1.174s | |
user 1m58.565s | |
sys 0m2.448s | |
$ ll test | |
-rwxr-xr-x 1 rudolph staff 17238892 28 Jun 14:23 test |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment