mirror of
https://github.com/silverqx/TinyORM.git
synced 2025-12-30 23:39:49 -06:00
- added a new config. option dont_drop, allows to define table that will be excluded during dropAllTables(), has a default value spatial_ref_sys for PostGIS - implemented fluent commands, used only by the PostgreSQL Comment command - added tests for PostgreSQL schema builder - reworked tst_Migrate to be able to run on all supported connections, currently PostgreSQL and MySQL - updated docs Unrelated: - added a new reference class IndexDefinitionReference for a nice API during index definition, contains algorithm and language - unified selectFromWriteConnection() in schema builders
26 lines
823 B
Plaintext
26 lines
823 B
Plaintext
---
|
|
sidebar_position: 2
|
|
sidebar_label: 🚀 Supported Compilers
|
|
hide_table_of_contents: true
|
|
description: Platform requirements and supported compilers for TinyORM c++ library.
|
|
---
|
|
|
|
# Supported Compilers
|
|
|
|
Following compilers are backed up by the GitHub Action [workflows](https://github.com/silverqx/TinyORM/tree/main/.github/workflows) (CI pipelines), these workflows also include more then 973 unit tests 😮.
|
|
|
|
Windows >=10:
|
|
|
|
- MSVC 2019 16.9 - 16.11.15
|
|
- MSYS2 UCRT64 GCC 10.2 - 11.3
|
|
- MSYS2 UCRT64 Clang 12 - 14
|
|
|
|
Linux:
|
|
|
|
- GCC 10.2 - 11.3
|
|
- Clang 11 - 14
|
|
|
|
:::caution
|
|
The MSVC >=17 (Visual Studio 2022) is not supported as the Qt Framework doesn't support it and it looks like the currently upcoming Qt 6.4.0 will not have the MSVC 17 support 😞, support will be added immediately after the Qt adds this support.
|
|
:::
|