Support Board
Date/Time: Sun, 19 Jan 2025 06:28:52 +0000
Post From: acsil code 32 vs 64 bit
[2018-03-21 18:21:52] |
JoseyWales - Posts: 67 |
If you are using Visual Studio This link explains it better than I can: https://msdn.microsoft.com/en-us/library/9yb4317s.aspx Here's a youtube video that is a bit outdated but somewhat relavent. Skip to 2 minutes in. https://www.youtube.com/watch?v=mZXUw-j28oY&t You have to make sure that you're building for x64 platform. Your code is the same, just the output dll can only be used for the x64 version of Sierra Chart. And it wouldn't hurt to go through your Project's Property page and confirm that the Sierra Chart specific settings are correct, like the Output Directory. Make sure that Configuration: All Configurations and Platform: x64 is set when you go through the settings. http://www.sierrachart.com/index.php?page=doc/UsingVisualCPlusPlus.php One other tip I could share with you is on the Project Property Page open the C/C++ Tree node and click General then set multi-processor Compilation to Yes (/MP). This will lessen your build times if you have a multi-threaded cpu. Handy if you have multiple files that share a header file that was changed or if you have to do a clean build. Date Time Of Last Edit: 2018-03-21 18:24:49
|