2
0
mirror of https://github.com/Dr-Noob/cpufetch synced 2025-08-22 18:07:11 +00:00

[v0.98] Add FreeBSD support to README

This commit is contained in:
Dr-Noob 2021-06-20 23:29:25 +02:00
parent c1a029e26f
commit 15035b9423
2 changed files with 4 additions and 1 deletions

View File

@ -38,12 +38,13 @@
# 1. Support # 1. Support
cpufetch supports x86, x86_64 (Intel and AMD) and ARM. cpufetch supports x86, x86_64 (Intel and AMD) and ARM.
| Platform | x86_64 | ARM | Notes | | OS | x86_64 / x86 | ARM | Notes |
|:---------:|:------------------------:|:-------------------:|:-----------------:| |:---------:|:------------------------:|:-------------------:|:-----------------:|
| GNU/Linux | :heavy_check_mark: | :heavy_check_mark: | Best support | | GNU/Linux | :heavy_check_mark: | :heavy_check_mark: | Best support |
| Windows | :heavy_check_mark: | :x: | Some information may be missing. <br> Colors will be used if supported | | Windows | :heavy_check_mark: | :x: | Some information may be missing. <br> Colors will be used if supported |
| Android | :heavy_exclamation_mark: | :heavy_check_mark: | Some information may be missing. <br> Not tested under x86_64 | | Android | :heavy_exclamation_mark: | :heavy_check_mark: | Some information may be missing. <br> Not tested under x86_64 |
| macOS | :heavy_check_mark: | :x: | Some information may be missing. <br> Apple M1 support may be added <br> in the future (see [#47](https://github.com/Dr-Noob/cpufetch/issues/47))| | macOS | :heavy_check_mark: | :x: | Some information may be missing. <br> Apple M1 support may be added <br> in the future (see [#47](https://github.com/Dr-Noob/cpufetch/issues/47))|
| FreeBSD | :heavy_check_mark: | :x: | Some information may be missing. |
# 2. Installation # 2. Installation
## 2.1 Installing from a package ## 2.1 Installing from a package

View File

@ -20,6 +20,8 @@
#else #else
static const char* OS_STR = "Linux"; static const char* OS_STR = "Linux";
#endif #endif
#elif __FreeBSD__
static const char* OS_STR = "FreeBSD";
#elif _WIN32 #elif _WIN32
static const char* OS_STR = "Windows"; static const char* OS_STR = "Windows";
#elif defined __APPLE__ || __MACH__ #elif defined __APPLE__ || __MACH__