Skip to content
Snippets Groups Projects
Commit 6dd0a500 authored by Nat Goodspeed's avatar Nat Goodspeed
Browse files
parents 5bb456d8 70a42af0
No related branches found
No related tags found
No related merge requests found
Showing
with 1487 additions and 712 deletions
...@@ -17,6 +17,8 @@ build-darwin-* ...@@ -17,6 +17,8 @@ build-darwin-*
build-vc80/ build-vc80/
build-vc100/ build-vc100/
build-vc120/ build-vc120/
build-vc120-32/
build-vc120-64/
indra/build-vc[0-9]* indra/build-vc[0-9]*
indra/CMakeFiles indra/CMakeFiles
indra/lib/mono/1.0/*.dll indra/lib/mono/1.0/*.dll
......
...@@ -3,36 +3,19 @@ ...@@ -3,36 +3,19 @@
# Please refer to: # Please refer to:
# https://wiki.secondlife.com/wiki/Automated_Build_System # https://wiki.secondlife.com/wiki/Automated_Build_System
# Variants (NOTE: 'Release' must be last for uploads to work correctly)
# Global setting for now.... variants = "RelWithDebInfo Release"
Darwin.symbolfiles = "newview/Release/secondlife-symbols-darwin.tar.bz2"
CYGWIN.symbolfiles = "newview/Release/secondlife-symbols-windows.tar.bz2"
Linux.symbolfiles = "newview/secondlife-symbols-linux.tar.bz2"
# Use Public Upload Locations # Use Public Upload Locations
public_build = true public_build = true
build_docs = true build_docs = true
# disable all Debug builds (RelWithDebInfo is sufficient)
build_CYGWIN_Debug = false
build_Linux_Debug = false
build_Darwin_Debug = false
build_Debug = false
# enable Doxygen building on Linux for TeamCity (it can be done manually on any platform) # enable Doxygen building on Linux for TeamCity (it can be done manually on any platform)
build_Linux_Doxygen = true build_Linux_Doxygen = true
# Update Public Inworld Build Status Indicators (setting should mirror "public_build") # Need viewer-build-variables as well as other shared repositories
email_status_this_is_os = true buildscripts_shared_more_NAMEs="build_variables"
build_variables_repostory_url = "https://bitbucket.org/lindenlab/viewer-build-variables"
# Limit extent of codeticket updates to revisions after...
codeticket_since = 3.3.0-release
# Override build system default toolchain
# Note that this will only affect automated builds.
Linux.distcc_version =
Linux.gcc_version = /usr/bin/gcc-4.6
Linux.cxx_version = /usr/bin/g++-4.6
################################################################ ################################################################
#### Examples of how to set the viewer_channel #### #### Examples of how to set the viewer_channel ####
...@@ -88,5 +71,9 @@ EDU_viewer_channel_suffix = "edu" ...@@ -88,5 +71,9 @@ EDU_viewer_channel_suffix = "edu"
# Notifications - to configure email notices use the TeamCity parameter # Notifications - to configure email notices use the TeamCity parameter
# setting screen for your project or build configuration to set the # setting screen for your project or build configuration to set the
# environment variable 'email' to a space-separated list of email addresses # environment variable 'email' to a space-separated list of email addresses
email=""
# Global setting for now....
Darwin.symbolfiles = "newview/Release/secondlife-symbols-darwin.tar.bz2"
CYGWIN.symbolfiles = "newview/Release/secondlife-symbols-windows.tar.bz2"
Linux.symbolfiles = "newview/secondlife-symbols-linux.tar.bz2"
This diff is collapsed.
...@@ -142,10 +142,14 @@ build() ...@@ -142,10 +142,14 @@ build()
local variant="$1" local variant="$1"
if $build_viewer if $build_viewer
then then
begin_section "autobuild $variant"
"$autobuild" build --no-configure -c $variant || fatal "failed building $variant" "$autobuild" build --no-configure -c $variant || fatal "failed building $variant"
echo true >"$build_dir"/build_ok
end_section "autobuild $variant"
begin_section "extensions $variant"
# Run build extensions # Run build extensions
if [ $build_ok -eq 0 -a -d ${build_dir}/packages/build-extensions ] if [ -d ${build_dir}/packages/build-extensions ]
then then
for extension in ${build_dir}/packages/build-extensions/*.sh for extension in ${build_dir}/packages/build-extensions/*.sh
do do
...@@ -157,10 +161,10 @@ build() ...@@ -157,10 +161,10 @@ build()
# *TODO: Make this a build extension. # *TODO: Make this a build extension.
package_llphysicsextensions_tpv || fatal "failed building llphysicsextensions packages" package_llphysicsextensions_tpv || fatal "failed building llphysicsextensions packages"
end_section "extensions $variant"
echo true >"$build_dir"/build_ok
else else
echo "Skipping build due to configuration build_viewer=${build_viewer}" record_event "Skipping build due to configuration build_viewer=${build_viewer}"
echo true >"$build_dir"/build_ok echo true >"$build_dir"/build_ok
fi fi
} }
...@@ -176,13 +180,9 @@ then ...@@ -176,13 +180,9 @@ then
exit 1 exit 1
fi fi
# Check to see if we're skipping the platform initialize_build # provided by master buildscripts build.sh
if ! eval '$build_'"$arch"
then
record_event "building on architecture $arch is disabled"
pass
fi
begin_section "autobuild initialize"
# ensure AUTOBUILD is in native path form for child processes # ensure AUTOBUILD is in native path form for child processes
AUTOBUILD="$(native_path "$AUTOBUILD")" AUTOBUILD="$(native_path "$AUTOBUILD")"
# set "$autobuild" to cygwin path form for use locally in this script # set "$autobuild" to cygwin path form for use locally in this script
...@@ -194,7 +194,16 @@ then ...@@ -194,7 +194,16 @@ then
fi fi
# load autobuild provided shell functions and variables # load autobuild provided shell functions and variables
eval "$("$autobuild" --quiet source_environment)" "$autobuild" --quiet source_environment > "$build_log_dir/source_environment"
begin_section "dump source environment commands"
cat "$build_log_dir/source_environment"
end_section "dump source environment commands"
begin_section "execute source environment commands"
. "$build_log_dir/source_environment"
end_section "execute source environment commands"
end_section "autobuild initialize"
# something about the additional_packages mechanism messes up buildscripts results.py on Linux # something about the additional_packages mechanism messes up buildscripts results.py on Linux
# since we don't care about those packages on Linux, just zero it out, yes - a HACK # since we don't care about those packages on Linux, just zero it out, yes - a HACK
...@@ -203,10 +212,9 @@ then ...@@ -203,10 +212,9 @@ then
export additional_packages= export additional_packages=
fi fi
# dump environment variables for debugging python_cmd "$helpers/codeticket.py" addinput "Viewer Channel" "${viewer_channel}"
begin_section "Environment"
env|sort initialize_version # provided by buildscripts build.sh; sets version id
end_section "Environment"
# Now run the build # Now run the build
succeeded=true succeeded=true
...@@ -214,9 +222,6 @@ build_processes= ...@@ -214,9 +222,6 @@ build_processes=
last_built_variant= last_built_variant=
for variant in $variants for variant in $variants
do do
eval '$build_'"$variant" || continue
eval '$build_'"$arch"_"$variant" || continue
# Only the last built arch is available for upload # Only the last built arch is available for upload
last_built_variant="$variant" last_built_variant="$variant"
...@@ -232,6 +237,9 @@ do ...@@ -232,6 +237,9 @@ do
then then
begin_section "Build $variant" begin_section "Build $variant"
build "$variant" "$build_dir" build "$variant" "$build_dir"
end_section "Build $variant"
begin_section "post-build $variant"
if `cat "$build_dir/build_ok"` if `cat "$build_dir/build_ok"`
then then
case "$variant" in case "$variant" in
...@@ -239,10 +247,10 @@ do ...@@ -239,10 +247,10 @@ do
if [ -r "$build_dir/autobuild-package.xml" ] if [ -r "$build_dir/autobuild-package.xml" ]
then then
begin_section "Autobuild metadata" begin_section "Autobuild metadata"
upload_item docs "$build_dir/autobuild-package.xml" text/xml python_cmd "$helpers/codeticket.py" addoutput "Autobuild Metadata" "$build_dir/autobuild-package.xml" --mimetype text/xml
if [ "$arch" != "Linux" ] if [ "$arch" != "Linux" ]
then then
record_dependencies_graph # defined in buildscripts/hg/bin/build.sh record_dependencies_graph "$build_dir/autobuild-package.xml" # defined in buildscripts/hg/bin/build.sh
else else
record_event "TBD - no dependency graph for linux (probable python version dependency)" record_event "TBD - no dependency graph for linux (probable python version dependency)"
fi fi
...@@ -255,12 +263,12 @@ do ...@@ -255,12 +263,12 @@ do
if [ -r "$build_dir/doxygen_warnings.log" ] if [ -r "$build_dir/doxygen_warnings.log" ]
then then
record_event "Doxygen warnings generated; see doxygen_warnings.log" record_event "Doxygen warnings generated; see doxygen_warnings.log"
upload_item log "$build_dir/doxygen_warnings.log" text/plain python_cmd "$helpers/codeticket.py" addoutput "Doxygen Log" "$build_dir/doxygen_warnings.log" --mimetype text/plain ## TBD
fi fi
if [ -d "$build_dir/doxygen/html" ] if [ -d "$build_dir/doxygen/html" ]
then then
tar -c -f "$build_dir/viewer-doxygen.tar.bz2" --strip-components 3 "$build_dir/doxygen/html" tar -c -f "$build_dir/viewer-doxygen.tar.bz2" --strip-components 3 "$build_dir/doxygen/html"
upload_item docs "$build_dir/viewer-doxygen.tar.bz2" binary/octet-stream python_cmd "$helpers/codeticket.py" addoutput "Doxygen Tarball" "$build_dir/viewer-doxygen.tar.bz2"
fi fi
;; ;;
*) *)
...@@ -270,7 +278,8 @@ do ...@@ -270,7 +278,8 @@ do
else else
record_failure "Build of \"$variant\" failed." record_failure "Build of \"$variant\" failed."
fi fi
end_section "Build $variant" end_section "post-build $variant"
else else
record_event "configure for $variant failed: build skipped" record_event "configure for $variant failed: build skipped"
fi fi
...@@ -290,7 +299,7 @@ then ...@@ -290,7 +299,7 @@ then
if $build_viewer_deb && [ "$last_built_variant" == "Release" ] if $build_viewer_deb && [ "$last_built_variant" == "Release" ]
then then
begin_section "Build Viewer Debian Package" begin_section "Build Viewer Debian Package"
have_private_repo=false
# mangle the changelog # mangle the changelog
dch --force-bad-version \ dch --force-bad-version \
--distribution unstable \ --distribution unstable \
...@@ -320,11 +329,12 @@ then ...@@ -320,11 +329,12 @@ then
# upload debian package and create repository # upload debian package and create repository
begin_section "Upload Debian Repository" begin_section "Upload Debian Repository"
for deb_file in `/bin/ls ../packages_public/*.deb ../*.deb 2>/dev/null`; do for deb_file in `/bin/ls ../packages_public/*.deb ../*.deb 2>/dev/null`; do
upload_item debian $deb_file binary/octet-stream deb_pkg=$(basename "$deb_file" | sed 's,_.*,,')
python_cmd "$helpers/codeticket.py" addoutput "Debian $deb_pkg" $deb_file
done done
for deb_file in `/bin/ls ../packages_private/*.deb 2>/dev/null`; do for deb_file in `/bin/ls ../packages_private/*.deb 2>/dev/null`; do
upload_item debian_private $deb_file binary/octet-stream deb_pkg=$(basename "$deb_file" | sed 's,_.*,,')
have_private_repo=true python_cmd "$helpers/codeticket.py" addoutput "Debian $deb_pkg" "$deb_file" --private
done done
create_deb_repo create_deb_repo
...@@ -336,14 +346,6 @@ then ...@@ -336,14 +346,6 @@ then
mv $build_log_dir/$debian_repo_type $build_log_dir/${debian_repo_type}_pushed mv $build_log_dir/$debian_repo_type $build_log_dir/${debian_repo_type}_pushed
fi fi
done done
if [ $have_private_repo = true ]; then
eval "$python_command \"$redirect\" '\${private_S3PROXY_URL}${S3PREFIX}repo/$repo/rev/$revision/index.html'"\
>"$build_log_dir/private.html" || fatal generating redirect
upload_item global_redirect "$build_log_dir/private.html" text/html
fi
end_section "Upload Debian Repository" end_section "Upload Debian Repository"
else else
...@@ -359,7 +361,7 @@ if $succeeded ...@@ -359,7 +361,7 @@ if $succeeded
then then
if $build_viewer if $build_viewer
then then
begin_section Upload Installer begin_section "Uploads"
# Upload installer # Upload installer
package=$(installer_$arch) package=$(installer_$arch)
if [ x"$package" = x ] || test -d "$package" if [ x"$package" = x ] || test -d "$package"
...@@ -368,9 +370,7 @@ then ...@@ -368,9 +370,7 @@ then
succeeded=$build_coverity succeeded=$build_coverity
else else
# Upload base package. # Upload base package.
upload_item installer "$package" binary/octet-stream python_cmd "$helpers/codeticket.py" addoutput Installer --output "$package"
upload_item quicklink "$package" binary/octet-stream
[ -f $build_dir/summary.json ] && upload_item installer $build_dir/summary.json text/plain
# Upload additional packages. # Upload additional packages.
for package_id in $additional_packages for package_id in $additional_packages
...@@ -378,8 +378,7 @@ then ...@@ -378,8 +378,7 @@ then
package=$(installer_$arch "$package_id") package=$(installer_$arch "$package_id")
if [ x"$package" != x ] if [ x"$package" != x ]
then then
upload_item installer "$package" binary/octet-stream python_cmd "$helpers/codeticket.py" addoutput "Installer $package_id" "$package"
upload_item quicklink "$package" binary/octet-stream
else else
record_failure "Failed to find additional package for '$package_id'." record_failure "Failed to find additional package for '$package_id'."
fi fi
...@@ -390,7 +389,7 @@ then ...@@ -390,7 +389,7 @@ then
# Upload crash reporter files # Upload crash reporter files
for symbolfile in $symbolfiles for symbolfile in $symbolfiles
do do
upload_item symbolfile "$build_dir/$symbolfile" binary/octet-stream python_cmd "$helpers/codeticket.py" addoutput "Symbolfile $(basename "$build_dir/$symbolfile")" "$build_dir/$symbolfile"
done done
# Upload the llphysicsextensions_tpv package, if one was produced # Upload the llphysicsextensions_tpv package, if one was produced
...@@ -398,7 +397,7 @@ then ...@@ -398,7 +397,7 @@ then
if [ -r "$build_dir/llphysicsextensions_package" ] if [ -r "$build_dir/llphysicsextensions_package" ]
then then
llphysicsextensions_package=$(cat $build_dir/llphysicsextensions_package) llphysicsextensions_package=$(cat $build_dir/llphysicsextensions_package)
upload_item private_artifact "$llphysicsextensions_package" binary/octet-stream python_cmd "$helpers/codeticket.py" addoutput "Physics Extensions Package" "$llphysicsextensions_package" --private
fi fi
;; ;;
*) *)
...@@ -414,7 +413,7 @@ then ...@@ -414,7 +413,7 @@ then
done done
fi fi
fi fi
end_section Upload Installer end_section "Uploads"
else else
record_event "skipping upload of installer" record_event "skipping upload of installer"
fi fi
......
...@@ -2,16 +2,28 @@ ...@@ -2,16 +2,28 @@
# #
# Compilation options shared by all Second Life components. # Compilation options shared by all Second Life components.
#*****************************************************************************
# It's important to realize that CMake implicitly concatenates
# CMAKE_CXX_FLAGS with (e.g.) CMAKE_CXX_FLAGS_RELEASE for Release builds. So
# set switches in CMAKE_CXX_FLAGS that should affect all builds, but in
# CMAKE_CXX_FLAGS_RELEASE or CMAKE_CXX_FLAGS_RELWITHDEBINFO for switches
# that should affect only that build variant.
#
# Also realize that CMAKE_CXX_FLAGS may already be partially populated on
# entry to this file.
#*****************************************************************************
if(NOT DEFINED ${CMAKE_CURRENT_LIST_FILE}_INCLUDED) if(NOT DEFINED ${CMAKE_CURRENT_LIST_FILE}_INCLUDED)
set(${CMAKE_CURRENT_LIST_FILE}_INCLUDED "YES") set(${CMAKE_CURRENT_LIST_FILE}_INCLUDED "YES")
include(Variables) include(Variables)
# Portable compilation flags. # Portable compilation flags.
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DADDRESS_SIZE=${ADDRESS_SIZE}")
set(CMAKE_CXX_FLAGS_DEBUG "-D_DEBUG -DLL_DEBUG=1") set(CMAKE_CXX_FLAGS_DEBUG "-D_DEBUG -DLL_DEBUG=1")
set(CMAKE_CXX_FLAGS_RELEASE set(CMAKE_CXX_FLAGS_RELEASE
"-DLL_RELEASE=1 -DLL_RELEASE_FOR_DOWNLOAD=1 -DNDEBUG") "-DLL_RELEASE=1 -DLL_RELEASE_FOR_DOWNLOAD=1 -DNDEBUG")
set(CMAKE_CXX_FLAGS_RELWITHDEBINFO set(CMAKE_CXX_FLAGS_RELWITHDEBINFO
"-DLL_RELEASE=1 -DNDEBUG -DLL_RELEASE_WITH_DEBUG_INFO=1") "-DLL_RELEASE=1 -DNDEBUG -DLL_RELEASE_WITH_DEBUG_INFO=1")
...@@ -55,7 +67,7 @@ if (WINDOWS) ...@@ -55,7 +67,7 @@ if (WINDOWS)
"${CMAKE_CXX_FLAGS_RELEASE} ${LL_CXX_FLAGS} /O2 /Zi /Zo /MD /MP /Ob2 -D_SECURE_STL=0 -D_HAS_ITERATOR_DEBUGGING=0" "${CMAKE_CXX_FLAGS_RELEASE} ${LL_CXX_FLAGS} /O2 /Zi /Zo /MD /MP /Ob2 -D_SECURE_STL=0 -D_HAS_ITERATOR_DEBUGGING=0"
CACHE STRING "C++ compiler release options" FORCE) CACHE STRING "C++ compiler release options" FORCE)
# zlib has assembly-language object files incompatible with SAFESEH # zlib has assembly-language object files incompatible with SAFESEH
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /LARGEADDRESSAWARE /SAFESEH:NO /NODEFAULTLIB:LIBCMT") set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /LARGEADDRESSAWARE /SAFESEH:NO /NODEFAULTLIB:LIBCMT /IGNORE:4099")
set(CMAKE_CXX_STANDARD_LIBRARIES "") set(CMAKE_CXX_STANDARD_LIBRARIES "")
set(CMAKE_C_STANDARD_LIBRARIES "") set(CMAKE_C_STANDARD_LIBRARIES "")
...@@ -74,9 +86,14 @@ if (WINDOWS) ...@@ -74,9 +86,14 @@ if (WINDOWS)
/nologo /nologo
/Oy- /Oy-
/Zc:wchar_t- /Zc:wchar_t-
/arch:SSE2 # /arch:SSE2
/fp:fast /fp:fast
) )
# Nicky: x64 implies SSE2
if( ADDRESS_SIZE EQUAL 32 )
add_definitions( /arch:SSE2 )
endif()
# Are we using the crummy Visual Studio KDU build workaround? # Are we using the crummy Visual Studio KDU build workaround?
if (NOT VS_DISABLE_FATAL_WARNINGS) if (NOT VS_DISABLE_FATAL_WARNINGS)
...@@ -133,13 +150,6 @@ if (LINUX) ...@@ -133,13 +150,6 @@ if (LINUX)
# Let's actually get a numerical version of gxx's version # Let's actually get a numerical version of gxx's version
STRING(REGEX REPLACE ".* ([0-9])\\.([0-9])\\.([0-9]).*" "\\1\\2\\3" CXX_VERSION_NUMBER ${CXX_VERSION}) STRING(REGEX REPLACE ".* ([0-9])\\.([0-9])\\.([0-9]).*" "\\1\\2\\3" CXX_VERSION_NUMBER ${CXX_VERSION})
# Hacks to work around gcc 4.1 TC build pool machines which can't process pragma warning disables
# This is pure rubbish; I wish there was another way.
#
if(${CXX_VERSION_NUMBER} LESS 420)
set(CMAKE_CXX_FLAGS "-Wno-deprecated -Wno-uninitialized -Wno-unused-variable -Wno-unused-function ${CMAKE_CXX_FLAGS}")
endif (${CXX_VERSION_NUMBER} LESS 420)
if(${CXX_VERSION_NUMBER} GREATER 459) if(${CXX_VERSION_NUMBER} GREATER 459)
set(CMAKE_CXX_FLAGS "-Wno-deprecated -Wno-unused-but-set-variable -Wno-unused-variable ${CMAKE_CXX_FLAGS}") set(CMAKE_CXX_FLAGS "-Wno-deprecated -Wno-unused-but-set-variable -Wno-unused-variable ${CMAKE_CXX_FLAGS}")
endif (${CXX_VERSION_NUMBER} GREATER 459) endif (${CXX_VERSION_NUMBER} GREATER 459)
...@@ -173,9 +183,9 @@ if (LINUX) ...@@ -173,9 +183,9 @@ if (LINUX)
add_definitions(-fvisibility=hidden) add_definitions(-fvisibility=hidden)
# don't catch SIGCHLD in our base application class for the viewer - some of our 3rd party libs may need their *own* SIGCHLD handler to work. Sigh! The viewer doesn't need to catch SIGCHLD anyway. # don't catch SIGCHLD in our base application class for the viewer - some of our 3rd party libs may need their *own* SIGCHLD handler to work. Sigh! The viewer doesn't need to catch SIGCHLD anyway.
add_definitions(-DLL_IGNORE_SIGCHLD) add_definitions(-DLL_IGNORE_SIGCHLD)
if (WORD_SIZE EQUAL 32) if (ADDRESS_SIZE EQUAL 32)
add_definitions(-march=pentium4) add_definitions(-march=pentium4)
endif (WORD_SIZE EQUAL 32) endif (ADDRESS_SIZE EQUAL 32)
add_definitions(-mfpmath=sse) add_definitions(-mfpmath=sse)
#add_definitions(-ftree-vectorize) # THIS CRASHES GCC 3.1-3.2 #add_definitions(-ftree-vectorize) # THIS CRASHES GCC 3.1-3.2
if (NOT USESYSTEMLIBS) if (NOT USESYSTEMLIBS)
...@@ -201,8 +211,9 @@ if (DARWIN) ...@@ -201,8 +211,9 @@ if (DARWIN)
# NOTE: it's critical to have both CXX_FLAGS and C_FLAGS covered. # NOTE: it's critical to have both CXX_FLAGS and C_FLAGS covered.
set(CMAKE_CXX_FLAGS_RELWITHDEBINFO "-O0 ${CMAKE_CXX_FLAGS_RELWITHDEBINFO}") set(CMAKE_CXX_FLAGS_RELWITHDEBINFO "-O0 ${CMAKE_CXX_FLAGS_RELWITHDEBINFO}")
set(CMAKE_C_FLAGS_RELWITHDEBINFO "-O0 ${CMAKE_C_FLAGS_RELWITHDEBINFO}") set(CMAKE_C_FLAGS_RELWITHDEBINFO "-O0 ${CMAKE_C_FLAGS_RELWITHDEBINFO}")
set(ENABLE_SIGNING TRUE) ## Really?? On developer machines too?
set(SIGNING_IDENTITY "Developer ID Application: Linden Research, Inc.") ##set(ENABLE_SIGNING TRUE)
##set(SIGNING_IDENTITY "Developer ID Application: Linden Research, Inc.")
endif (DARWIN) endif (DARWIN)
...@@ -226,22 +237,17 @@ if (LINUX OR DARWIN) ...@@ -226,22 +237,17 @@ if (LINUX OR DARWIN)
set(CMAKE_C_FLAGS "${GCC_WARNINGS} ${CMAKE_C_FLAGS}") set(CMAKE_C_FLAGS "${GCC_WARNINGS} ${CMAKE_C_FLAGS}")
set(CMAKE_CXX_FLAGS "${GCC_CXX_WARNINGS} ${CMAKE_CXX_FLAGS}") set(CMAKE_CXX_FLAGS "${GCC_CXX_WARNINGS} ${CMAKE_CXX_FLAGS}")
if (WORD_SIZE EQUAL 32) set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -m${ADDRESS_SIZE}")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -m32") set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -m${ADDRESS_SIZE}")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -m32")
elseif (WORD_SIZE EQUAL 64)
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -m64")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -m64")
endif (WORD_SIZE EQUAL 32)
endif (LINUX OR DARWIN) endif (LINUX OR DARWIN)
if (USESYSTEMLIBS) if (USESYSTEMLIBS)
add_definitions(-DLL_USESYSTEMLIBS=1) add_definitions(-DLL_USESYSTEMLIBS=1)
if (LINUX AND ${ARCH} STREQUAL "i686") if (LINUX AND ADDRESS_SIZE EQUAL 32)
add_definitions(-march=pentiumpro) add_definitions(-march=pentiumpro)
endif (LINUX AND ${ARCH} STREQUAL "i686") endif (LINUX AND ADDRESS_SIZE EQUAL 32)
else (USESYSTEMLIBS) else (USESYSTEMLIBS)
set(${ARCH}_linux_INCLUDES set(${ARCH}_linux_INCLUDES
......
...@@ -2,9 +2,17 @@ ...@@ -2,9 +2,17 @@
# Construct the version and copyright information based on package data. # Construct the version and copyright information based on package data.
include(Python) include(Python)
# packages-formatter.py runs autobuild install --versions, which needs to know
# the build_directory, which (on Windows) depends on AUTOBUILD_ADDRSIZE.
# Within an autobuild build, AUTOBUILD_ADDRSIZE is already set. But when
# building in an IDE, it probably isn't. Set it explicitly using
# run_build_test.py.
add_custom_command(OUTPUT packages-info.txt add_custom_command(OUTPUT packages-info.txt
COMMENT Generating packages-info.txt for the about box COMMENT Generating packages-info.txt for the about box
MAIN_DEPENDENCY ${CMAKE_SOURCE_DIR}/../autobuild.xml MAIN_DEPENDENCY ${CMAKE_SOURCE_DIR}/../autobuild.xml
DEPENDS ${CMAKE_SOURCE_DIR}/../scripts/packages-formatter.py DEPENDS ${CMAKE_SOURCE_DIR}/../scripts/packages-formatter.py
COMMAND ${PYTHON_EXECUTABLE} ${CMAKE_SOURCE_DIR}/../scripts/packages-formatter.py > packages-info.txt COMMAND ${PYTHON_EXECUTABLE}
${CMAKE_SOURCE_DIR}/cmake/run_build_test.py -DAUTOBUILD_ADDRSIZE=${ADDRESS_SIZE}
${PYTHON_EXECUTABLE}
${CMAKE_SOURCE_DIR}/../scripts/packages-formatter.py "${VIEWER_CHANNEL}" "${VIEWER_SHORT_VERSION}.${VIEWER_VERSION_REVISION}" > packages-info.txt
) )
...@@ -30,7 +30,6 @@ set(cmake_SOURCE_FILES ...@@ -30,7 +30,6 @@ set(cmake_SOURCE_FILES
FindFMODEX.cmake FindFMODEX.cmake
FindGLH.cmake FindGLH.cmake
FindGoogleBreakpad.cmake FindGoogleBreakpad.cmake
FindGooglePerfTools.cmake
FindHUNSPELL.cmake FindHUNSPELL.cmake
FindJsonCpp.cmake FindJsonCpp.cmake
FindNDOF.cmake FindNDOF.cmake
...@@ -46,11 +45,8 @@ set(cmake_SOURCE_FILES ...@@ -46,11 +45,8 @@ set(cmake_SOURCE_FILES
GLOD.cmake GLOD.cmake
## GStreamer010Plugin.cmake ## GStreamer010Plugin.cmake
GetPrerequisites_2_8.cmake GetPrerequisites_2_8.cmake
## Glui.cmake
Glut.cmake
GoogleBreakpad.cmake GoogleBreakpad.cmake
GoogleMock.cmake GoogleMock.cmake
GooglePerfTools.cmake
Havok.cmake Havok.cmake
Hunspell.cmake Hunspell.cmake
JPEG.cmake JPEG.cmake
...@@ -90,7 +86,6 @@ set(cmake_SOURCE_FILES ...@@ -90,7 +86,6 @@ set(cmake_SOURCE_FILES
Prebuilt.cmake Prebuilt.cmake
PulseAudio.cmake PulseAudio.cmake
Python.cmake Python.cmake
QuickTimePlugin.cmake
TemplateCheck.cmake TemplateCheck.cmake
Tut.cmake Tut.cmake
UI.cmake UI.cmake
......
...@@ -6,17 +6,17 @@ SET(DEBUG_PKG_CONFIG "YES") ...@@ -6,17 +6,17 @@ SET(DEBUG_PKG_CONFIG "YES")
IF("$ENV{PKG_CONFIG_LIBDIR}" STREQUAL "") IF("$ENV{PKG_CONFIG_LIBDIR}" STREQUAL "")
# Guess at architecture-specific system library paths. # Guess at architecture-specific system library paths.
if (WORD_SIZE EQUAL 32) if (ADDRESS_SIZE EQUAL 32)
SET(PKG_CONFIG_NO_MULTI_GUESS /usr/lib32 /usr/lib) SET(PKG_CONFIG_NO_MULTI_GUESS /usr/lib32 /usr/lib)
SET(PKG_CONFIG_NO_MULTI_LOCAL_GUESS /usr/local/lib32 /usr/local/lib) SET(PKG_CONFIG_NO_MULTI_LOCAL_GUESS /usr/local/lib32 /usr/local/lib)
SET(PKG_CONFIG_MULTI_GUESS /usr/lib/i386-linux-gnu) SET(PKG_CONFIG_MULTI_GUESS /usr/lib/i386-linux-gnu)
SET(PKG_CONFIG_MULTI_LOCAL_GUESS /usr/local/lib/i386-linux-gnu) SET(PKG_CONFIG_MULTI_LOCAL_GUESS /usr/local/lib/i386-linux-gnu)
else (WORD_SIZE EQUAL 32) else (ADDRESS_SIZE EQUAL 32)
SET(PKG_CONFIG_NO_MULTI_GUESS /usr/lib64 /usr/lib) SET(PKG_CONFIG_NO_MULTI_GUESS /usr/lib64 /usr/lib)
SET(PKG_CONFIG_NO_MULTI_LOCAL_GUESS /usr/local/lib64 /usr/local/lib) SET(PKG_CONFIG_NO_MULTI_LOCAL_GUESS /usr/local/lib64 /usr/local/lib)
SET(PKG_CONFIG_MULTI_GUESS /usr/local/lib/x86_64-linux-gnu) SET(PKG_CONFIG_MULTI_GUESS /usr/local/lib/x86_64-linux-gnu)
SET(PKG_CONFIG_MULTI_LOCAL_GUESS /usr/local/lib/x86_64-linux-gnu) SET(PKG_CONFIG_MULTI_LOCAL_GUESS /usr/local/lib/x86_64-linux-gnu)
endif (WORD_SIZE EQUAL 32) endif (ADDRESS_SIZE EQUAL 32)
# Use DPKG architecture, if available. # Use DPKG architecture, if available.
IF (${DPKG_ARCH}) IF (${DPKG_ARCH})
......
...@@ -30,18 +30,6 @@ if(WINDOWS) ...@@ -30,18 +30,6 @@ if(WINDOWS)
#******************************* #*******************************
# Misc shared libs # Misc shared libs
set(debug_src_dir "${ARCH_PREBUILT_DIRS_DEBUG}")
set(debug_files
openjpegd.dll
libapr-1.dll
libaprutil-1.dll
libapriconv-1.dll
ssleay32.dll
libeay32.dll
glod.dll
libhunspell.dll
)
set(release_src_dir "${ARCH_PREBUILT_DIRS_RELEASE}") set(release_src_dir "${ARCH_PREBUILT_DIRS_RELEASE}")
set(release_files set(release_files
openjpeg.dll openjpeg.dll
...@@ -54,14 +42,13 @@ if(WINDOWS) ...@@ -54,14 +42,13 @@ if(WINDOWS)
libhunspell.dll libhunspell.dll
) )
if(USE_TCMALLOC)
set(debug_files ${debug_files} libtcmalloc_minimal-debug.dll)
set(release_files ${release_files} libtcmalloc_minimal.dll)
endif(USE_TCMALLOC)
if (FMODEX) if (FMODEX)
set(debug_files ${debug_files} fmodexL.dll)
set(release_files ${release_files} fmodex.dll) if(ADDRESS_SIZE EQUAL 32)
set(release_files ${release_files} fmodex.dll)
else(ADDRESS_SIZE EQUAL 32)
set(release_files ${release_files} fmodex64.dll)
endif(ADDRESS_SIZE EQUAL 32)
endif (FMODEX) endif (FMODEX)
#******************************* #*******************************
...@@ -234,10 +221,6 @@ elseif(LINUX) ...@@ -234,10 +221,6 @@ elseif(LINUX)
libfontconfig.so.1 libfontconfig.so.1
) )
if (USE_TCMALLOC)
set(release_files ${release_files} "libtcmalloc_minimal.so")
endif (USE_TCMALLOC)
if (FMODEX) if (FMODEX)
set(debug_files ${debug_files} "libfmodexL.so") set(debug_files ${debug_files} "libfmodexL.so")
set(release_files ${release_files} "libfmodex.so") set(release_files ${release_files} "libfmodex.so")
...@@ -294,13 +277,13 @@ set(third_party_targets ${third_party_targets} ${out_targets}) ...@@ -294,13 +277,13 @@ set(third_party_targets ${third_party_targets} ${out_targets})
copy_if_different( #copy_if_different(
${debug_src_dir} # ${debug_src_dir}
"${SHARED_LIB_STAGING_DIR_DEBUG}" # "${SHARED_LIB_STAGING_DIR_DEBUG}"
out_targets # out_targets
${debug_files} # ${debug_files}
) # )
set(third_party_targets ${third_party_targets} ${out_targets}) #set(third_party_targets ${third_party_targets} ${out_targets})
copy_if_different( copy_if_different(
${release_src_dir} ${release_src_dir}
......
...@@ -5,6 +5,6 @@ if (NOT USESYSTEMLIBS) ...@@ -5,6 +5,6 @@ if (NOT USESYSTEMLIBS)
if (WINDOWS OR LINUX) if (WINDOWS OR LINUX)
use_prebuilt_binary(glext) use_prebuilt_binary(glext)
endif (WINDOWS OR LINUX) endif (WINDOWS OR LINUX)
use_prebuilt_binary(glh-linear) use_prebuilt_binary(glh_linear)
set(GLEXT_INCLUDE_DIR ${LIBS_PREBUILT_DIR}/include) set(GLEXT_INCLUDE_DIR ${LIBS_PREBUILT_DIR}/include)
endif (NOT USESYSTEMLIBS) endif (NOT USESYSTEMLIBS)
...@@ -7,5 +7,5 @@ set(GLH_FIND_QUIETLY TRUE) ...@@ -7,5 +7,5 @@ set(GLH_FIND_QUIETLY TRUE)
if (USESYSTEMLIBS) if (USESYSTEMLIBS)
include(FindGLH) include(FindGLH)
else (USESYSTEMLIBS) else (USESYSTEMLIBS)
use_prebuilt_binary(glh-linear) use_prebuilt_binary(glh_linear)
endif (USESYSTEMLIBS) endif (USESYSTEMLIBS)
# -*- cmake -*-
include(Linking)
include(Prebuilt)
if (USESYSTEMLIBS)
set(GLUI OFF CACHE BOOL
"GLUI support for the llplugin/llmedia test apps.")
else (USESYSTEMLIBS)
use_prebuilt_binary(glui)
set(GLUI ON CACHE BOOL
"GLUI support for the llplugin/llmedia test apps.")
endif (USESYSTEMLIBS)
if (LINUX)
set(GLUI ON CACHE BOOL
"llplugin media apps HACK for Linux.")
endif (LINUX)
if (DARWIN OR LINUX)
set(GLUI_LIBRARY
glui)
endif (DARWIN OR LINUX)
if (WINDOWS)
set(GLUI_LIBRARY
debug glui32.lib
optimized glui32.lib)
endif (WINDOWS)
# -*- cmake -*-
include(Linking)
include(Prebuilt)
if (WINDOWS)
use_prebuilt_binary(freeglut)
set(GLUT_LIBRARY
debug freeglut_static.lib
optimized freeglut_static.lib)
endif (WINDOWS)
if (LINUX)
FIND_LIBRARY(GLUT_LIBRARY glut)
endif (LINUX)
if (DARWIN)
include(CMakeFindFrameworks)
find_library(GLUT_LIBRARY GLUT)
endif (DARWIN)
# -*- cmake -*-
include(Prebuilt)
# If you want to enable or disable TCMALLOC in viewer builds, this is the place.
# set ON or OFF as desired.
set (USE_TCMALLOC OFF)
if (USESYSTEMLIBS)
include(FindGooglePerfTools)
else (USESYSTEMLIBS)
if (WINDOWS)
if (USE_TCMALLOC)
use_prebuilt_binary(gperftools)
set(TCMALLOC_LIBRARIES
debug libtcmalloc_minimal-debug
optimized libtcmalloc_minimal)
set(TCMALLOC_LINK_FLAGS "/INCLUDE:__tcmalloc")
else (USE_TCMALLOC)
set(TCMALLOC_LIBRARIES)
set(TCMALLOC_LINK_FLAGS)
endif (USE_TCMALLOC)
set(GOOGLE_PERFTOOLS_FOUND "YES")
endif (WINDOWS)
if (LINUX)
if (USE_TCMALLOC)
use_prebuilt_binary(gperftools)
set(TCMALLOC_LIBRARIES
tcmalloc)
else (USE_TCMALLOC)
set(TCMALLOC_LIBRARIES)
endif (USE_TCMALLOC)
set(PROFILER_LIBRARIES profiler)
set(GOOGLE_PERFTOOLS_INCLUDE_DIR
${LIBS_PREBUILT_DIR}/include)
set(GOOGLE_PERFTOOLS_FOUND "YES")
endif (LINUX)
endif (USESYSTEMLIBS)
if (GOOGLE_PERFTOOLS_FOUND)
# XXX Disable temporarily, until we have compilation issues on 64-bit
# Etch sorted.
set(USE_GOOGLE_PERFTOOLS OFF CACHE BOOL "Build with Google PerfTools support.")
endif (GOOGLE_PERFTOOLS_FOUND)
if (WINDOWS)
set(USE_GOOGLE_PERFTOOLS ON)
endif (WINDOWS)
if (USE_GOOGLE_PERFTOOLS)
if (USE_TCMALLOC)
set(TCMALLOC_FLAG -DLL_USE_TCMALLOC=1)
else (USE_TCMALLOC)
set(TCMALLOC_FLAG -ULL_USE_TCMALLOC)
endif (USE_TCMALLOC)
endif (USE_GOOGLE_PERFTOOLS)
if (USE_GOOGLE_PERFTOOLS)
include_directories(${GOOGLE_PERFTOOLS_INCLUDE_DIR})
set(GOOGLE_PERFTOOLS_LIBRARIES ${TCMALLOC_LIBRARIES} ${STACKTRACE_LIBRARIES} ${PROFILER_LIBRARIES})
else (USE_GOOGLE_PERFTOOLS)
endif (USE_GOOGLE_PERFTOOLS)
...@@ -4,7 +4,6 @@ include(APR) ...@@ -4,7 +4,6 @@ include(APR)
include(Boost) include(Boost)
include(EXPAT) include(EXPAT)
include(ZLIB) include(ZLIB)
include(GooglePerfTools)
set(LLCOMMON_INCLUDE_DIRS set(LLCOMMON_INCLUDE_DIRS
${LIBS_OPEN_DIR}/llcommon ${LIBS_OPEN_DIR}/llcommon
...@@ -34,8 +33,6 @@ else (LINUX) ...@@ -34,8 +33,6 @@ else (LINUX)
${BOOST_SYSTEM_LIBRARY} ) ${BOOST_SYSTEM_LIBRARY} )
endif (LINUX) endif (LINUX)
# add_definitions(${TCMALLOC_FLAG})
set(LLCOMMON_LINK_SHARED OFF CACHE BOOL "Build the llcommon target as a static library.") set(LLCOMMON_LINK_SHARED OFF CACHE BOOL "Build the llcommon target as a static library.")
if(LLCOMMON_LINK_SHARED) if(LLCOMMON_LINK_SHARED)
add_definitions(-DLL_COMMON_LINK_SHARED=1) add_definitions(-DLL_COMMON_LINK_SHARED=1)
......
# -*- cmake -*-
if(INSTALL_PROPRIETARY)
include(Prebuilt)
if (WINDOWS)
use_prebuilt_binary(quicktime)
endif (WINDOWS)
endif(INSTALL_PROPRIETARY)
if (DARWIN)
include(CMakeFindFrameworks)
find_library(QUICKTIME_LIBRARY QuickTime)
elseif (WINDOWS)
set(QUICKTIME_SDK_DIR "$ENV{PROGRAMFILES}/QuickTime SDK"
CACHE PATH "Location of the QuickTime SDK.")
find_library(DEBUG_QUICKTIME_LIBRARY qtmlclient.lib
PATHS
${ARCH_PREBUILT_DIRS_DEBUG}
"${QUICKTIME_SDK_DIR}\\libraries"
)
find_library(RELEASE_QUICKTIME_LIBRARY qtmlclient.lib
PATHS
${ARCH_PREBUILT_DIRS_RELEASE}
"${QUICKTIME_SDK_DIR}\\libraries"
)
if (DEBUG_QUICKTIME_LIBRARY AND RELEASE_QUICKTIME_LIBRARY)
set(QUICKTIME_LIBRARY
optimized ${RELEASE_QUICKTIME_LIBRARY}
debug ${DEBUG_QUICKTIME_LIBRARY}
)
endif (DEBUG_QUICKTIME_LIBRARY AND RELEASE_QUICKTIME_LIBRARY)
include_directories(
${LIBS_PREBUILT_DIR}/include/quicktime
"${QUICKTIME_SDK_DIR}\\CIncludes"
)
endif (DARWIN)
mark_as_advanced(QUICKTIME_LIBRARY)
if (QUICKTIME_LIBRARY)
set(QUICKTIME ON CACHE BOOL "Build with QuickTime streaming media support.")
endif (QUICKTIME_LIBRARY)
...@@ -32,9 +32,9 @@ if (USESYSTEMLIBS) ...@@ -32,9 +32,9 @@ if (USESYSTEMLIBS)
add_definitions(${${pkg}_CFLAGS_OTHERS}) add_definitions(${${pkg}_CFLAGS_OTHERS})
endforeach(pkg) endforeach(pkg)
else (USESYSTEMLIBS) else (USESYSTEMLIBS)
if (LINUX OR WINDOWS) if (LINUX)
use_prebuilt_binary(gtk-atk-pango-glib) use_prebuilt_binary(gtk-atk-pango-glib)
endif (LINUX OR WINDOWS) endif (LINUX)
if (LINUX) if (LINUX)
set(UI_LIBRARIES set(UI_LIBRARIES
......
...@@ -60,46 +60,55 @@ if (NOT CMAKE_BUILD_TYPE) ...@@ -60,46 +60,55 @@ if (NOT CMAKE_BUILD_TYPE)
"Build type. One of: Debug Release RelWithDebInfo" FORCE) "Build type. One of: Debug Release RelWithDebInfo" FORCE)
endif (NOT CMAKE_BUILD_TYPE) endif (NOT CMAKE_BUILD_TYPE)
# If someone has specified an address size, use that to determine the
# architecture. Otherwise, let the architecture specify the address size.
if (ADDRESS_SIZE EQUAL 32)
#message(STATUS "ADDRESS_SIZE is 32")
set(ARCH i686)
elseif (ADDRESS_SIZE EQUAL 64)
#message(STATUS "ADDRESS_SIZE is 64")
set(ARCH x86_64)
else (ADDRESS_SIZE EQUAL 32)
#message(STATUS "ADDRESS_SIZE is UNRECOGNIZED: '${ADDRESS_SIZE}'")
# Use Python's platform.machine() since uname -m isn't available everywhere.
# Even if you can assume cygwin uname -m, the answer depends on whether
# you're running 32-bit cygwin or 64-bit cygwin! But even 32-bit Python will
# report a 64-bit processor.
execute_process(COMMAND
"${PYTHON_EXECUTABLE}" "-c"
"import platform; print platform.machine()"
OUTPUT_VARIABLE ARCH OUTPUT_STRIP_TRAILING_WHITESPACE)
# We expect values of the form i386, i686, x86_64, AMD64.
# In CMake, expressing ARCH.endswith('64') is awkward:
string(LENGTH "${ARCH}" ARCH_LENGTH)
math(EXPR ARCH_LEN_2 "${ARCH_LENGTH} - 2")
string(SUBSTRING "${ARCH}" ${ARCH_LEN_2} 2 ARCH_LAST_2)
if (ARCH_LAST_2 STREQUAL 64)
#message(STATUS "ARCH is detected as 64; ARCH is ${ARCH}")
set(ADDRESS_SIZE 64)
else ()
#message(STATUS "ARCH is detected as 32; ARCH is ${ARCH}")
set(ADDRESS_SIZE 32)
endif ()
endif (ADDRESS_SIZE EQUAL 32)
if (${CMAKE_SYSTEM_NAME} MATCHES "Windows") if (${CMAKE_SYSTEM_NAME} MATCHES "Windows")
set(WINDOWS ON BOOL FORCE) set(WINDOWS ON BOOL FORCE)
set(ARCH i686)
set(LL_ARCH ${ARCH}_win32) set(LL_ARCH ${ARCH}_win32)
set(LL_ARCH_DIR ${ARCH}-win32) set(LL_ARCH_DIR ${ARCH}-win32)
set(WORD_SIZE 32)
endif (${CMAKE_SYSTEM_NAME} MATCHES "Windows") endif (${CMAKE_SYSTEM_NAME} MATCHES "Windows")
if (${CMAKE_SYSTEM_NAME} MATCHES "Linux") if (${CMAKE_SYSTEM_NAME} MATCHES "Linux")
set(LINUX ON BOOl FORCE) set(LINUX ON BOOl FORCE)
# If someone has specified a word size, use that to determine the if (ADDRESS_SIZE EQUAL 32)
# architecture. Otherwise, let the architecture specify the word size.
if (WORD_SIZE EQUAL 32)
#message(STATUS "WORD_SIZE is 32")
set(ARCH i686)
elseif (WORD_SIZE EQUAL 64)
#message(STATUS "WORD_SIZE is 64")
set(ARCH x86_64)
else (WORD_SIZE EQUAL 32)
#message(STATUS "WORD_SIZE is UNDEFINED")
execute_process(COMMAND uname -m COMMAND sed s/i.86/i686/
OUTPUT_VARIABLE ARCH OUTPUT_STRIP_TRAILING_WHITESPACE)
if (ARCH STREQUAL x86_64)
#message(STATUS "ARCH is detected as 64; ARCH is ${ARCH}")
set(WORD_SIZE 64)
else (ARCH STREQUAL x86_64)
#message(STATUS "ARCH is detected as 32; ARCH is ${ARCH}")
set(WORD_SIZE 32)
endif (ARCH STREQUAL x86_64)
endif (WORD_SIZE EQUAL 32)
if (WORD_SIZE EQUAL 32)
set(DEB_ARCHITECTURE i386) set(DEB_ARCHITECTURE i386)
set(FIND_LIBRARY_USE_LIB64_PATHS OFF) set(FIND_LIBRARY_USE_LIB64_PATHS OFF)
set(CMAKE_SYSTEM_LIBRARY_PATH /usr/lib32 ${CMAKE_SYSTEM_LIBRARY_PATH}) set(CMAKE_SYSTEM_LIBRARY_PATH /usr/lib32 ${CMAKE_SYSTEM_LIBRARY_PATH})
else (WORD_SIZE EQUAL 32) else (ADDRESS_SIZE EQUAL 32)
set(DEB_ARCHITECTURE amd64) set(DEB_ARCHITECTURE amd64)
set(FIND_LIBRARY_USE_LIB64_PATHS ON) set(FIND_LIBRARY_USE_LIB64_PATHS ON)
endif (WORD_SIZE EQUAL 32) endif (ADDRESS_SIZE EQUAL 32)
execute_process(COMMAND dpkg-architecture -a${DEB_ARCHITECTURE} -qDEB_HOST_MULTIARCH execute_process(COMMAND dpkg-architecture -a${DEB_ARCHITECTURE} -qDEB_HOST_MULTIARCH
RESULT_VARIABLE DPKG_RESULT RESULT_VARIABLE DPKG_RESULT
...@@ -140,18 +149,15 @@ if (${CMAKE_SYSTEM_NAME} MATCHES "Darwin") ...@@ -140,18 +149,15 @@ if (${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
set(CMAKE_XCODE_ATTRIBUTE_GCC_STRICT_ALIASING NO) set(CMAKE_XCODE_ATTRIBUTE_GCC_STRICT_ALIASING NO)
set(CMAKE_XCODE_ATTRIBUTE_GCC_FAST_MATH NO) set(CMAKE_XCODE_ATTRIBUTE_GCC_FAST_MATH NO)
set(CMAKE_XCODE_ATTRIBUTE_CLANG_X86_VECTOR_INSTRUCTIONS ssse3) set(CMAKE_XCODE_ATTRIBUTE_CLANG_X86_VECTOR_INSTRUCTIONS ssse3)
set(CMAKE_XCODE_ATTRIBUTE_CLANG_CXX_LIBRARY "libstdc++") set(CMAKE_XCODE_ATTRIBUTE_CLANG_CXX_LIBRARY "libc++")
set(CMAKE_XCODE_ATTRIBUTE_DEBUG_INFORMATION_FORMAT dwarf-with-dsym) set(CMAKE_XCODE_ATTRIBUTE_DEBUG_INFORMATION_FORMAT dwarf-with-dsym)
# Build only for i386 by default, system default on MacOSX 10.6+ is x86_64 set(CMAKE_OSX_ARCHITECTURES "${ARCH}")
if (NOT CMAKE_OSX_ARCHITECTURES) string(REPLACE "i686" "i386" CMAKE_OSX_ARCHITECTURES "${CMAKE_OSX_ARCHITECTURES}")
set(CMAKE_OSX_ARCHITECTURES "i386") string(REPLACE "AMD64" "x86_64" CMAKE_OSX_ARCHITECTURES "${CMAKE_OSX_ARCHITECTURES}")
endif (NOT CMAKE_OSX_ARCHITECTURES)
set(ARCH ${CMAKE_OSX_ARCHITECTURES})
set(LL_ARCH ${ARCH}_darwin) set(LL_ARCH ${ARCH}_darwin)
set(LL_ARCH_DIR universal-darwin) set(LL_ARCH_DIR universal-darwin)
set(WORD_SIZE 32)
endif (${CMAKE_SYSTEM_NAME} MATCHES "Darwin") endif (${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
# Default deploy grid # Default deploy grid
......
...@@ -10,7 +10,6 @@ include(Boost) ...@@ -10,7 +10,6 @@ include(Boost)
include(LLSharedLibs) include(LLSharedLibs)
include(JsonCpp) include(JsonCpp)
include(GoogleBreakpad) include(GoogleBreakpad)
include(GooglePerfTools)
include(Copy3rdPartyLibs) include(Copy3rdPartyLibs)
include(ZLIB) include(ZLIB)
include(URIPARSER) include(URIPARSER)
...@@ -250,13 +249,13 @@ list(APPEND llcommon_SOURCE_FILES ${llcommon_HEADER_FILES}) ...@@ -250,13 +249,13 @@ list(APPEND llcommon_SOURCE_FILES ${llcommon_HEADER_FILES})
if(LLCOMMON_LINK_SHARED) if(LLCOMMON_LINK_SHARED)
add_library (llcommon SHARED ${llcommon_SOURCE_FILES}) add_library (llcommon SHARED ${llcommon_SOURCE_FILES})
if(NOT WORD_SIZE EQUAL 32) if(NOT ADDRESS_SIZE EQUAL 32)
if(WINDOWS) if(WINDOWS)
add_definitions(/FIXED:NO) ##add_definitions(/FIXED:NO)
else(WINDOWS) # not windows therefore gcc LINUX and DARWIN else(WINDOWS) # not windows therefore gcc LINUX and DARWIN
add_definitions(-fPIC) add_definitions(-fPIC)
endif(WINDOWS) endif(WINDOWS)
endif(NOT WORD_SIZE EQUAL 32) endif(NOT ADDRESS_SIZE EQUAL 32)
if(WINDOWS) if(WINDOWS)
# always generate llcommon.pdb, even for "Release" builds # always generate llcommon.pdb, even for "Release" builds
set_target_properties(llcommon PROPERTIES LINK_FLAGS "/DEBUG") set_target_properties(llcommon PROPERTIES LINK_FLAGS "/DEBUG")
...@@ -339,8 +338,4 @@ if (LL_TESTS) ...@@ -339,8 +338,4 @@ if (LL_TESTS)
## throwing and catching exceptions. ## throwing and catching exceptions.
##LL_ADD_INTEGRATION_TEST(llexception "" "${test_libs}") ##LL_ADD_INTEGRATION_TEST(llexception "" "${test_libs}")
# *TODO - reenable these once tcmalloc libs no longer break the build.
#ADD_BUILD_TEST(llallocator llcommon)
#ADD_BUILD_TEST(llallocator_heap_profile llcommon)
#ADD_BUILD_TEST(llmemtype llcommon)
endif (LL_TESTS) endif (LL_TESTS)
...@@ -27,47 +27,6 @@ ...@@ -27,47 +27,6 @@
#include "linden_common.h" #include "linden_common.h"
#include "llallocator.h" #include "llallocator.h"
#if (LL_USE_TCMALLOC && LL_USE_HEAP_PROFILER)
#include "google/heap-profiler.h"
#include "google/commandlineflags_public.h"
DECLARE_bool(heap_profile_use_stack_trace);
//DECLARE_double(tcmalloc_release_rate);
void LLAllocator::setProfilingEnabled(bool should_enable)
{
// NULL disables dumping to disk
static char const * const PREFIX = NULL;
if(should_enable)
{
HeapProfilerSetUseStackTrace(false);
HeapProfilerStart(PREFIX);
}
else
{
HeapProfilerStop();
}
}
// static
bool LLAllocator::isProfiling()
{
return IsHeapProfilerRunning();
}
std::string LLAllocator::getRawProfile()
{
// *TODO - fix google-perftools to accept an buffer to avoid this
// malloc-copy-free cycle.
char * buffer = GetHeapProfile();
std::string ret = buffer;
free(buffer);
return ret;
}
#else // LL_USE_TCMALLOC
// //
// stub implementations for when tcmalloc is disabled // stub implementations for when tcmalloc is disabled
// //
...@@ -87,8 +46,6 @@ std::string LLAllocator::getRawProfile() ...@@ -87,8 +46,6 @@ std::string LLAllocator::getRawProfile()
return std::string(); return std::string();
} }
#endif // LL_USE_TCMALLOC
LLAllocatorHeapProfile const & LLAllocator::getProfile() LLAllocatorHeapProfile const & LLAllocator::getProfile()
{ {
mProf.mLines.clear(); mProf.mLines.clear();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment