Alan Mikhak

Results 10 comments of Alan Mikhak

I was able to generate the examples and build Projucer and the StepSequencerDemo without observing the -latomic issue on an Nvidia Jetson Nano DevKit platform which runs 64-bit Ubuntu 18.0.4...

I was able to do the same without observing the -latomic issue on my NanoPi M4 board which runs 64-bit FriendlyElec OS on 64-bit Linux kernel for aarch64 architecture.

I have cmake 3.20.1 compiled from sources and installed on the PATH. I see CMakeLists.txt in Projucer and StepSequencerDemo folders. I didn't see an example of how I should invoke...

I see -latomic in the CMakeFiles/StepSequencerDemo.dir/link.txt generated by cmake. Building StepSequencerDemo with the Makefile generated by CMake produced the following error on the same Raspberry Pi 4: [ 96%] Building...

On the aarch64 Jetson Nano DevKit, I see the following error and many warnings with CMake whereas the build with the published procedure was clean and no warnings. $ make...

Thanks. I understand. It is great that it works with generate_examples script for ARM. It was clean for 64-bit ARM, at least on two of my aarch64 boards. For 32-bit...

As an alternative workaround for Raspberry Pi 4 running 32-bit Raspbian 10 (buster) for armv7l, I can compile the StepSequencerDemo with either of the following commands: $ make LDFLAGS=-latomic CONFIG=Release...

To resolve the "-m64" issue for CMake method on 64-bit ARM, I edited the CMakeLists.txt as follows: ``` $ git diff diff --git a/examples/StepSequencerDemo/CMakeLists.txt b/examples/StepSequencerDemo/CMakeLists.txt index cfaeca88..d5897f2b 100644 --- a/examples/StepSequencerDemo/CMakeLists.txt...

I can build the StepSequencerDemo using the CMake method for 32-bit armv7l on my Raspberry Pi 4 with clang++ as follows: ``` $ cd ~/src/github.com/Tracktion/tracktion_engine/examples/StepSequencerDemo $ cmake . -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_C_COMPILER=clang...

The following is the output of cmake command using clang++ 10.0.0 as the compiler: ``` $ cmake . -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_C_COMPILER=clang -- Configuring juceaide -- Building juceaide -- Exporting juceaide --...