Search found 4 matches

by michkrom
Sat Apr 17 2021 10:41 pm
Forum: Installation
Topic: CopperSpice on arm target
Replies: 7
Views: 11844

Re: CopperSpice on arm target

Apparently, wchar_t is 4 bytes by default on ARM64 and likely Cs was never complied as such. I could: 1) patch it in qstring8 to directly cast to (char32_t)ch (or even to char16_t) 2) make explicit constructor QChar32(wchar_t) 3) change the default size of wchar_t via compile option -fshort-wchar An...
by michkrom
Sat Apr 17 2021 9:30 pm
Forum: Installation
Topic: CopperSpice on arm target
Replies: 7
Views: 11844

Re: CopperSpice on arm target

This modification moved it forward diff --git a/src/core/global/qglobal.h b/src/core/global/qglobal.h index 3e576b0..ba602e0 100755 --- a/src/core/global/qglobal.h +++ b/src/core/global/qglobal.h @@ -85,7 +85,8 @@ # define Q_PROCESSOR_X86 3 # endif - +#elif defined(__ARM_ARCH) +# define Q_PROCESSOR_...
by michkrom
Sat Apr 17 2021 6:40 pm
Forum: Installation
Topic: CopperSpice on arm target
Replies: 7
Views: 11844

Re: CopperSpice on arm target

Just trying to build Cs on raspberry pi (Pi4 8GB). Looks like the build system does not like it much ;-) [1/3890] Building CXX object src/core/CMakeFiles/CsCore.dir/animation/qpropertyanimation.cpp.o FAILED: src/core/CMakeFiles/CsCore.dir/animation/qpropertyanimation.cpp.o /usr/bin/c++ @src/core/CMa...
by michkrom
Sat Apr 17 2021 6:31 pm
Forum: Installation
Topic: update apt-get commands for debian/ubuntu
Replies: 1
Views: 5640

update apt-get commands for debian/ubuntu

Hi, Could the commands listed in docs be updated to a directly copy-pastable, like in this below (notice the sudo and -y and missing ninja-build)? sudo apt-get install -y libfreetype6-dev libfontconfig1-dev libglib2.0-dev libgstreamer1.0-dev \ libgstreamer-plugins-base1.0-dev libice-dev libaudio-dev...