-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Paul Walker (Baconpaul)
committed
Oct 31, 2024
1 parent
2f52ea6
commit 9b28da1
Showing
4 changed files
with
61 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -103,3 +103,5 @@ libs/juce-* | |
# A place for BP to store stuff | ||
ignore/* | ||
__pycache__ | ||
|
||
arm*bld |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/* | ||
* sst-plugininfra - an open source library of plugin infrastructure | ||
* built by Surge Synth Team. | ||
* | ||
* Copyright 2018-2024, various authors, as described in the GitHub | ||
* transaction log. | ||
* | ||
* sst-effects is released under the MIT License. It has subordinate | ||
* libraries with licenses as described in libs/ | ||
* | ||
* All source in sst-plugininfra available at | ||
* https://github.com/surge-synthesizer/sst-plugininfra | ||
*/ | ||
|
||
#include "sst/plugininfra/cpufeatures.h" | ||
#include <iostream> | ||
|
||
int main(int argc, char **argv) | ||
{ | ||
using namespace sst::plugininfra::cpufeatures; | ||
std::cout << "CPU Features Platform\n"; | ||
std::cout << "brand : " << brand() << "\n"; | ||
std::cout << "isArm : " << isArm() << "\n"; | ||
std::cout << "isX86 : " << isX86() << "\n"; | ||
} |