Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Alchemy Viewer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package Registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Silent mode is enabled
All outbound communications are blocked.
Learn more
.
Show more breadcrumbs
Alchemy Viewer
Alchemy Viewer
Commits
09b88cf4
Commit
09b88cf4
authored
8 years ago
by
Oz Linden
Browse files
Options
Downloads
Patches
Plain Diff
add AUTOBUILD_ADDRSIZE to symbol file name for clarity, change output tag to just "Symbolfile"
parent
6976377a
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
BuildParams
+0
-4
0 additions, 4 deletions
BuildParams
build.sh
+27
-22
27 additions, 22 deletions
build.sh
indra/newview/CMakeLists.txt
+4
-3
4 additions, 3 deletions
indra/newview/CMakeLists.txt
with
31 additions
and
29 deletions
BuildParams
+
0
−
4
View file @
09b88cf4
...
@@ -73,7 +73,3 @@ EDU_viewer_channel_suffix = "edu"
...
@@ -73,7 +73,3 @@ EDU_viewer_channel_suffix = "edu"
# environment variable 'email' to a space-separated list of email addresses
# environment variable 'email' to a space-separated list of email addresses
email=""
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.
Click to expand it.
build.sh
+
27
−
22
View file @
09b88cf4
...
@@ -389,28 +389,33 @@ then
...
@@ -389,28 +389,33 @@ then
fi
fi
done
done
case
"
$last_built_variant
"
in
if
[
"
$last_built_variant
"
=
"Release"
]
Release
)
then
# Upload crash reporter files
# Upload crash reporter file
for
symbolfile
in
$symbolfiles
# These names must match the set of VIEWER_SYMBOL_FILE in indra/newview/CMakeLists.txt
do
case
"
$arch
"
in
symfile
=
$(
basename
"
$build_dir
/
$symbolfile
"
)
CYGWIN
)
python_cmd
"
$helpers
/codeticket.py"
addoutput
"Symbolfile
$symfile
"
"
$build_dir
/
$symbolfile
"
\
symbolfile
=
"
$build_dir
/newview/Release/secondlife-symbols-windows-
${
AUTOBUILD_ADDRSIZE
}
.tar.bz2"
||
fatal
"Upload of symbolfile
$symfile
failed"
;;
done
Darwin
)
symbolfile
=
"
$build_dir
/newview/Release/secondlife-symbols-darwin-
${
AUTOBUILD_ADDRSIZE
}
.tar.bz2"
# Upload the llphysicsextensions_tpv package, if one was produced
;;
# *TODO: Make this an upload-extension
Linux
)
if
[
-r
"
$build_dir
/llphysicsextensions_package"
]
symbolfile
=
"
$build_dir
/newview/Release/secondlife-symbols-linux-
${
AUTOBUILD_ADDRSIZE
}
.tar.bz2"
then
;;
llphysicsextensions_package
=
$(
cat
$build_dir
/llphysicsextensions_package
)
esac
python_cmd
"
$helpers
/codeticket.py"
addoutput
"Physics Extensions Package"
"
$llphysicsextensions_package
"
--private
\
python_cmd
"
$helpers
/codeticket.py"
addoutput
"Symbolfile"
"
$symbolfile
"
\
||
fatal
"Upload of physics extensions package failed"
||
fatal
"Upload of symbolfile failed"
fi
;;
# Upload the llphysicsextensions_tpv package, if one was produced
*
)
# *TODO: Make this an upload-extension
;;
if
[
-r
"
$build_dir
/llphysicsextensions_package"
]
esac
then
llphysicsextensions_package
=
$(
cat
$build_dir
/llphysicsextensions_package
)
python_cmd
"
$helpers
/codeticket.py"
addoutput
"Physics Extensions Package"
"
$llphysicsextensions_package
"
--private
\
||
fatal
"Upload of physics extensions package failed"
fi
fi
# Run upload extensions
# Run upload extensions
if
[
-d
${
build_dir
}
/packages/upload-extensions
]
;
then
if
[
-d
${
build_dir
}
/packages/upload-extensions
]
;
then
...
...
This diff is collapsed.
Click to expand it.
indra/newview/CMakeLists.txt
+
4
−
3
View file @
09b88cf4
...
@@ -2109,9 +2109,10 @@ endif (INSTALL)
...
@@ -2109,9 +2109,10 @@ endif (INSTALL)
if
(
PACKAGE
)
if
(
PACKAGE
)
set
(
SYMBOL_SEARCH_DIRS
""
)
set
(
SYMBOL_SEARCH_DIRS
""
)
# Note that the path to VIEWER_SYMBOL_FILE must match that in ../../build.sh
if
(
WINDOWS
)
if
(
WINDOWS
)
list
(
APPEND SYMBOL_SEARCH_DIRS
"
${
CMAKE_CURRENT_BINARY_DIR
}
/
${
CMAKE_CFG_INTDIR
}
"
)
list
(
APPEND SYMBOL_SEARCH_DIRS
"
${
CMAKE_CURRENT_BINARY_DIR
}
/
${
CMAKE_CFG_INTDIR
}
"
)
set
(
VIEWER_SYMBOL_FILE
"
${
CMAKE_CURRENT_BINARY_DIR
}
/
${
CMAKE_CFG_INTDIR
}
/secondlife-symbols-windows.tar.bz2"
)
set
(
VIEWER_SYMBOL_FILE
"
${
CMAKE_CURRENT_BINARY_DIR
}
/
${
CMAKE_CFG_INTDIR
}
/secondlife-symbols-windows
-$ENV{AUTOBUILD_ADDRSIZE}
.tar.bz2"
)
# slplugin.exe failing symbols dump - need to debug, might have to do with updated version of google breakpad
# slplugin.exe failing symbols dump - need to debug, might have to do with updated version of google breakpad
# set(VIEWER_EXE_GLOBS "${VIEWER_BINARY_NAME}${CMAKE_EXECUTABLE_SUFFIX} slplugin.exe")
# set(VIEWER_EXE_GLOBS "${VIEWER_BINARY_NAME}${CMAKE_EXECUTABLE_SUFFIX} slplugin.exe")
set
(
VIEWER_EXE_GLOBS
"
${
VIEWER_BINARY_NAME
}${
CMAKE_EXECUTABLE_SUFFIX
}
"
)
set
(
VIEWER_EXE_GLOBS
"
${
VIEWER_BINARY_NAME
}${
CMAKE_EXECUTABLE_SUFFIX
}
"
)
...
@@ -2125,14 +2126,14 @@ if (PACKAGE)
...
@@ -2125,14 +2126,14 @@ if (PACKAGE)
list
(
APPEND SYMBOL_SEARCH_DIRS
"
${
CMAKE_BINARY_DIR
}
/mac_crash_logger/
${
CMAKE_CFG_INTDIR
}
"
)
list
(
APPEND SYMBOL_SEARCH_DIRS
"
${
CMAKE_BINARY_DIR
}
/mac_crash_logger/
${
CMAKE_CFG_INTDIR
}
"
)
list
(
APPEND SYMBOL_SEARCH_DIRS
"
${
CMAKE_BINARY_DIR
}
/media_plugins/gstreamer010/
${
CMAKE_CFG_INTDIR
}
"
)
list
(
APPEND SYMBOL_SEARCH_DIRS
"
${
CMAKE_BINARY_DIR
}
/media_plugins/gstreamer010/
${
CMAKE_CFG_INTDIR
}
"
)
list
(
APPEND SYMBOL_SEARCH_DIRS
"
${
CMAKE_BINARY_DIR
}
/media_plugins/quicktime/
${
CMAKE_CFG_INTDIR
}
"
)
list
(
APPEND SYMBOL_SEARCH_DIRS
"
${
CMAKE_BINARY_DIR
}
/media_plugins/quicktime/
${
CMAKE_CFG_INTDIR
}
"
)
set
(
VIEWER_SYMBOL_FILE
"
${
CMAKE_CURRENT_BINARY_DIR
}
/
${
CMAKE_CFG_INTDIR
}
/secondlife-symbols-darwin.tar.bz2"
)
set
(
VIEWER_SYMBOL_FILE
"
${
CMAKE_CURRENT_BINARY_DIR
}
/
${
CMAKE_CFG_INTDIR
}
/secondlife-symbols-darwin
-$ENV{AUTOBUILD_ADDRSIZE}
.tar.bz2"
)
set
(
VIEWER_EXE_GLOBS
"'Second Life' SLPlugin mac-crash-logger"
)
set
(
VIEWER_EXE_GLOBS
"'Second Life' SLPlugin mac-crash-logger"
)
set
(
VIEWER_EXE_GLOBS
"'Second Life' mac-crash-logger"
)
set
(
VIEWER_EXE_GLOBS
"'Second Life' mac-crash-logger"
)
set
(
VIEWER_LIB_GLOB
"*.dylib"
)
set
(
VIEWER_LIB_GLOB
"*.dylib"
)
endif
(
DARWIN
)
endif
(
DARWIN
)
if
(
LINUX
)
if
(
LINUX
)
list
(
APPEND SYMBOL_SEARCH_DIRS
"
${
CMAKE_CURRENT_BINARY_DIR
}
/packaged"
)
list
(
APPEND SYMBOL_SEARCH_DIRS
"
${
CMAKE_CURRENT_BINARY_DIR
}
/packaged"
)
set
(
VIEWER_SYMBOL_FILE
"
${
CMAKE_CURRENT_BINARY_DIR
}
/
${
CMAKE_CFG_INTDIR
}
/secondlife-symbols-linux.tar.bz2"
)
set
(
VIEWER_SYMBOL_FILE
"
${
CMAKE_CURRENT_BINARY_DIR
}
/
${
CMAKE_CFG_INTDIR
}
/secondlife-symbols-linux
-$ENV{AUTOBUILD_ADDRSIZE}
.tar.bz2"
)
set
(
VIEWER_EXE_GLOBS
"do-not-directly-run-secondlife-bin SLPlugin"
)
set
(
VIEWER_EXE_GLOBS
"do-not-directly-run-secondlife-bin SLPlugin"
)
set
(
VIEWER_EXE_GLOBS
"do-not-directly-run-secondlife-bin"
)
set
(
VIEWER_EXE_GLOBS
"do-not-directly-run-secondlife-bin"
)
set
(
VIEWER_LIB_GLOB
"*
${
CMAKE_SHARED_MODULE_SUFFIX
}
*"
)
set
(
VIEWER_LIB_GLOB
"*
${
CMAKE_SHARED_MODULE_SUFFIX
}
*"
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment