Login Page - Create Account

Support Board


Date/Time: Mon, 06 May 2024 10:54:40 +0000



Post From: Sierra Chart Executables for ARM 64 Processor

[2023-03-26 11:36:34]
JohnGrasty - Posts: 16
Hi all (and especially Support),

So I am running the arm64 binary in Windows 11 Arm in virtualization on an M1 Mac. The performance has been exceptional…outpacing even a Xeon workstation that I have around which was running the x64 SC natively.

I took a break from getting custom studies to build, but I think I want to play around with that some more. I understand this is all unsupported currently, but I could use the tiniest bit of help. In the past, you posted your remote build scripts (see below for reference). If you could share something equivalent for how you build SierraChartStudies_ARM64.dll, it would save me a ton of time and experimentation–really it's just compile flags and which compiler we would need.

Thanks so much for the great product and all your effort related to this!
John



(Remote Build - Error SC version 1689 | Post: 141378)

#!/bin/bash

FileNames=$@

cd /root/source;

x86_64-w64-mingw32-g++ -D _WIN64 -march=x86-64 -mtune=x86-64 -O2 -shared -static -static-libgcc -static-libstdc++ -s -fno-rtti -fno-exceptions -std=gnu++11 $FileNames -o Output.dll -Wno-deprecated &>Output.txt;