Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
fossils
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Boman Romain
fossils
Commits
5c9cf2f8
Commit
5c9cf2f8
authored
7 months ago
by
Boman Romain
Browse files
Options
Downloads
Patches
Plain Diff
fix installer
parent
b79f9e2c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!2
Extractors
Pipeline
#44187
passed
7 months ago
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
fossils-win.spec
+27
-11
27 additions, 11 deletions
fossils-win.spec
with
27 additions
and
11 deletions
fossils-win.spec
+
27
−
11
View file @
5c9cf2f8
...
...
@@ -2,7 +2,7 @@
# BUILD DIST:
# load environment
# pyinstaller --noconfirm fossils.spec
# pyinstaller --noconfirm fossils
-win
.spec
block_cipher
=
None
...
...
@@ -63,13 +63,29 @@ exe = EXE(
entitlements_file
=
None
,
icon
=
'
gui/icons/fossils.ico
'
,
)
coll
=
COLLECT
(
exe
,
a
.
binaries
,
a
.
zipfiles
,
a
.
datas
,
strip
=
False
,
upx
=
False
,
# works well but slower runtime
upx_exclude
=
[],
name
=
'
fossils
'
,
)
# when using VBox + mesa drivers installed on c:\Python310\python.exe,
# mesa dlls are copied into the installer which makes
# gmsh display crash at runtime.
# => we manually remove the libraries related to openGL (they are not present when built outside a vbox)
# see https://stackoverflow.com/questions/58097858/how-to-exclude-opengl32sw-dll-from-pyqt5-library-when-using-pyinstaller
to_keep
=
[]
to_exclude
=
{
'
opengl32.dll
'
,
'
libglapi.dll
'
,
'
libgallium_wgl.dll
'
}
for
(
dest
,
source
,
kind
)
in
a
.
binaries
:
if
os
.
path
.
split
(
dest
)[
1
].
lower
()
in
to_exclude
:
print
(
f
'
removing
{
source
}
'
)
continue
to_keep
.
append
((
dest
,
source
,
kind
))
a
.
binaries
=
to_keep
if
1
:
coll
=
COLLECT
(
exe
,
a
.
binaries
,
a
.
zipfiles
,
a
.
datas
,
strip
=
False
,
upx
=
False
,
# works well but slower runtime
upx_exclude
=
[],
name
=
'
fossils
'
,
)
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