mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-24 23:23:57 -06:00
Don't strip binaries
On some Linux systems it fails due to an invalid Elf handle. Stripping the binaries on Linux/MacOS is a likely culprit. Disabling this option seems a save choice at least for now. Contributes to CURA-9365
This commit is contained in:
parent
8a14406c63
commit
2ee58e24bc
1 changed files with 1 additions and 1 deletions
|
@ -197,7 +197,7 @@ class CuraConan(ConanFile):
|
|||
entitlements_file = entitlements_file,
|
||||
osx_bundle_identifier = "'nl.ultimaker.cura'" if self.settings.os == "Macos" else "None",
|
||||
upx = str(self.settings.os == "Windows"),
|
||||
strip = str(self.settings.os != "Windows"),
|
||||
strip = False, # This should be possible on Linux and MacOS but, it can also cause issues on some distributions. Safest is to disable it for now
|
||||
target_arch = "'x86_64'" if self.settings.os == "Macos" else "None", # FIXME: Make this dependent on the settings.arch_target
|
||||
macos = self.settings.os == "Macos"
|
||||
))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue