diff options
| author | Tofu Linden <tofu.linden@lindenlab.com> | 2010-02-04 11:40:33 +0000 | 
|---|---|---|
| committer | Tofu Linden <tofu.linden@lindenlab.com> | 2010-02-04 11:40:33 +0000 | 
| commit | 56ca1aebb866b7d7e1526e31797dd7e07fcb74a8 (patch) | |
| tree | 67f9afd88507ffb29d2749948a952270ef1cad0f | |
| parent | 23877285636610ecf426dc4d40f358a6f2eb4c92 (diff) | |
remove linux linking stats from build process - I added them to help optimize linking time, but they're noisy and inaccurate in reality.
| -rw-r--r-- | indra/cmake/00-Common.cmake | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/indra/cmake/00-Common.cmake b/indra/cmake/00-Common.cmake index 1f578eec5f..592e9fc901 100644 --- a/indra/cmake/00-Common.cmake +++ b/indra/cmake/00-Common.cmake @@ -171,8 +171,8 @@ if (LINUX)      if (NOT STANDALONE)        # this stops us requiring a really recent glibc at runtime        add_definitions(-fno-stack-protector) -      # linking can be so slow - give us a chance to figure out why -      set(CMAKE_CXX_LINK_FLAGS "-Wl,--stats,--no-keep-memory") +      # linking can be very memory-hungry, especially the final viewer link +      set(CMAKE_CXX_LINK_FLAGS "-Wl,--no-keep-memory")      endif (NOT STANDALONE)    endif (VIEWER) | 
