mirror of
https://github.com/Expand-sys/CCash
synced 2026-03-22 12:37:08 +11:00
📝
This commit is contained in:
parent
24665641b4
commit
dbe755da2b
2 changed files with 2 additions and 1 deletions
|
|
@ -1,6 +1,6 @@
|
|||
[PREVIOUS PAGE](explanation.md) | [NEXT PAGE](endpoints.md)
|
||||
|
||||
CCash is backwards compatible, so even if a language API does not support the newester version it can still call the old endpoints. Only when the major version increments are deprecated features made defunct (e.g `v1.0.0 -> v2.0.0`), check the [endpoint docs](endpoints.md) to avoid using deprecated endpoints. For more information about versioning check out [versioning docs](../../versioning.md)
|
||||
CCash is backwards compatible, so even if a language API does not support the newester version it can still call the old endpoints. Only when the major version increments are deprecated features made defunct (e.g `v1.0.0` -> `v2.0.0`), check the [endpoint docs](endpoints.md) to avoid using deprecated endpoints. For more information about versioning check out [versioning docs](../../versioning.md)
|
||||
| author | language | | newest CCash supported version |
|
||||
| :------------------------------------------- | :------: | ------------------------------------------------------------------- | :----------------------------: |
|
||||
| [SpaceCat](https://github.com/SpaceCat-Chan) | CCLua | [CatsCCashLuaApi](https://github.com/SpaceCat-Chan/CatsCCashLuaApi) | `v2.4.1` |
|
||||
|
|
|
|||
1
main.cpp
1
main.cpp
|
|
@ -54,6 +54,7 @@ int main(int argc, char **argv)
|
|||
}
|
||||
const unsigned long saving_freq = std::stoul(std::string(argv[2]));
|
||||
std::cout
|
||||
<< "\nAPI : v2.5.1"
|
||||
<< "\n\nAVX : " << (__builtin_cpu_supports("avx") ? "enabled" : "disabled")
|
||||
<< "\nAVX 2 : " << (__builtin_cpu_supports("avx2") ? "enabled" : "disabled")
|
||||
<< "\nSSE 2 : " << (__builtin_cpu_supports("sse2") ? "enabled" : "disabled")
|
||||
|
|
|
|||
Loading…
Reference in a new issue