Minor corrections regarding os support

pull/1295/head
nightwalker-87 2023-01-01 13:20:02 +01:00
rodzic dfff59d39f
commit f025d756b7
4 zmienionych plików z 4 dodań i 5 usunięć

Wyświetl plik

@ -20,7 +20,7 @@ labels: code/feature-request
In order to allow developers to isolate and target your respective issue, please take some time to select the check boxes below and fill out each of the following items appropriate to your specific request.
- [ ] Programmer/board type: [enter here] (e.g STLINK /V1, /V2, /V2-onboard, /V2-clone, /V3)
- [ ] Operating system an version: [enter here] (e.g Linux, macOS, Windows)
- [ ] Operating system an version: [enter here] (e.g Linux, Windows)
- [ ] **stlink tools version** and/or git commit hash: [enter here] (e.g v1.6.1/git-d0416149)
- [ ] stlink commandline tool name: [enter here] (e.g `st-info`, `st-flash`, `st-trace`, `st-util`)
- [ ] Target chip (and board, if applicable): [enter here] (e.g STM32F103C8T6 (NUCLEO-F103RB))

Wyświetl plik

@ -74,7 +74,7 @@ include(${CMAKE_MODULE_PATH}/get_version.cmake) # Determine project version
include(GNUInstallDirs) # Define GNU standard installation directories
# Define install directory /usr/local/share [not /usr/share on MacOS]
# Define install directory /usr/local/share
cmake_host_system_information(RESULT OS_NAME QUERY OS_NAME)
message(STATUS "Checking for OS_NAME: ${OS_NAME}")

Wyświetl plik

@ -1,6 +1,6 @@
# Compiling from sources
## Microsoft Windows (10, 8.1)
## Microsoft Windows (10, 11)
### Common Requirements

Wyświetl plik

@ -19,6 +19,7 @@
* v1.0.23 | 0x01000107
* v1.0.24 | 0x01000108
* v1.0.25 | 0x01000109
* v1.0.26 | 0x01000110
*/
#if defined (__FreeBSD__)
@ -35,8 +36,6 @@
#define MINIMAL_API_VERSION 0x01000105 // v1.0.21
#elif defined (__linux__)
#define MINIMAL_API_VERSION 0x01000105 // v1.0.21
#elif defined (__APPLE__)
#define MINIMAL_API_VERSION 0x01000109 // v1.0.25
#elif defined (_WIN32)
#define MINIMAL_API_VERSION 0x01000109 // v1.0.25
#endif