Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
XDG Integration
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
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
JennaHuntsman
XDG Integration
Commits
b09d2cba
Commit
b09d2cba
authored
1 year ago
by
Rye Mutt
Browse files
Options
Downloads
Patches
Plain Diff
Enable debug symbol compression for linux CI build
parent
7877d698
No related branches found
Branches containing commit
No related tags found
2 merge requests
!3
Update to main branch
,
!2
Rebase onto current main branch
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+1
-1
1 addition, 1 deletion
.gitlab-ci.yml
indra/cmake/00-Common.cmake
+6
-0
6 additions, 0 deletions
indra/cmake/00-Common.cmake
with
7 additions
and
1 deletion
.gitlab-ci.yml
+
1
−
1
View file @
b09d2cba
...
@@ -151,7 +151,7 @@ variables:
...
@@ -151,7 +151,7 @@ variables:
-
source .venv/bin/activate
-
source .venv/bin/activate
-
pip3 install --upgrade llbase autobuild certifi sentry-cli cmake ninja
-
pip3 install --upgrade llbase autobuild certifi sentry-cli cmake ninja
script
:
script
:
-
autobuild configure -c Release -- -DUSE_LTO=${USE_LTO} -DDISABLE_FATAL_WARNINGS=ON -DREVISION_FROM_VCS=FALSE
-
autobuild configure -c Release -- -DUSE_LTO=${USE_LTO} -DDISABLE_FATAL_WARNINGS=ON -DREVISION_FROM_VCS=FALSE
-DCOMPRESS_DEBUG=ON
-
autobuild build -c Release --no-configure
-
autobuild build -c Release --no-configure
-
autobuild graph -c Release --graph-file alchemy-linuxs${AUTOBUILD_ADDRSIZE}-dependencies.svg build-linux-${AUTOBUILD_ADDRSIZE}/autobuild-package.xml
-
autobuild graph -c Release --graph-file alchemy-linuxs${AUTOBUILD_ADDRSIZE}-dependencies.svg build-linux-${AUTOBUILD_ADDRSIZE}/autobuild-package.xml
-
if [ "$USE_SENTRY" = "TRUE" ]; then sentry-cli difutil bundle-sources build-linux-*/newview/alchemy-bin; fi
-
if [ "$USE_SENTRY" = "TRUE" ]; then sentry-cli difutil bundle-sources build-linux-*/newview/alchemy-bin; fi
...
...
This diff is collapsed.
Click to expand it.
indra/cmake/00-Common.cmake
+
6
−
0
View file @
b09d2cba
...
@@ -59,6 +59,8 @@ if(USE_LTO)
...
@@ -59,6 +59,8 @@ if(USE_LTO)
set
(
CMAKE_INTERPROCEDURAL_OPTIMIZATION
${
USE_LTO
}
)
set
(
CMAKE_INTERPROCEDURAL_OPTIMIZATION
${
USE_LTO
}
)
endif
()
endif
()
option
(
COMPRESS_DEBUG
"Compress debug sections on supported compilers"
OFF
)
set
(
CMAKE_POSITION_INDEPENDENT_CODE ON
)
set
(
CMAKE_POSITION_INDEPENDENT_CODE ON
)
set
(
CMAKE_C_VISIBILITY_PRESET
"hidden"
)
set
(
CMAKE_C_VISIBILITY_PRESET
"hidden"
)
set
(
CMAKE_CXX_VISIBILITY_PRESET
"hidden"
)
set
(
CMAKE_CXX_VISIBILITY_PRESET
"hidden"
)
...
@@ -194,6 +196,10 @@ if (LINUX)
...
@@ -194,6 +196,10 @@ if (LINUX)
-pthread
-pthread
)
)
if
(
COMPRESS_DEBUG
)
add_compile_options
(
-gz
)
endif
()
if
(
USE_AVX2
)
if
(
USE_AVX2
)
add_compile_options
(
-mavx2
)
add_compile_options
(
-mavx2
)
elseif
(
USE_AVX
)
elseif
(
USE_AVX
)
...
...
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