Age | Commit message (Collapse) | Author |
|
|
|
|
|
standard as used in the project
|
|
|
|
|
|
|
|
|
|
|
|
|
|
about crashes when running on unsupported OS
|
|
|
|
|
|
|
|
|
|
|
|
|
|
be used to access column value from "strict match" to "must not truncate"
|
|
|
|
Closes #28909
|
|
|
|
|
|
GCC: 10
Clang: 11
MSVC: 2022
|
|
* Remove cotire
|
|
|
|
Closes #28133
|
|
|
|
|
|
(cherry picked from commit f47bd13db30ba4ae335f3f800843a33a7f357c32)
|
|
|
|
upper version limit
|
|
(cherry picked from commit 657970fb69ddb70b0650bc726a0065b38f6dbd29)
|
|
With C++17 enabled these don't serve an purpose anymore.
See https://cmake.org/cmake/help/latest/prop_gbl/CMAKE_CXX_KNOWN_FEATURES.html
(cherry picked from commit 0ea73a29050493f53efa2101dc94c2bab302ac06)
|
|
(cherry picked from commit 68a490923d183c438fd852dde73f3054554d023a)
|
|
(cherry picked from commit d8940f35a954a66f9fa0dc0595fab8532edce29f)
|
|
* CMake: Add WITH_BOOST_STACKTRACE option to use libbacktrace
* Allow to specify where backtrace.h header is with cmake option -DBOOST_STACKTRACE_BACKTRACE_INCLUDE_FILE="/usr/lib/gcc/x86_64-linux-gnu/10/include/backtrace.h"
Co-authored-by: Trond B. Krokli <38162891+illfated@users.noreply.github.com>
(cherry picked from commit dc78b5a6a7410092df7ac426fbb2f2551072c889)
|
|
* Core/Misc: fix double empty line
* worldserver.conf
(cherry picked from commit a32b6b8ac4c81128a56b282f20837fb085bdd9e7)
|
|
|
|
compile time statistics that can be later viewed with ClangBuildAnalyzer)
|
|
should make PCH more effective in reducing compile times, closer to MSVC)
|
|
(cherry picked from commit 277b401df45879fa33345878be8864e3ba5aa8c3)
|
|
#25335)
(cherry picked from commit cd30e0b86ce6ee88386a91cebdf353fc55805c57)
|
|
(cherry picked from commit 27b1930d97d541c241655d8b820cbaebe6eec44e)
|
|
Even when building with Clang, make sure to have libstdc++ >= 8
(cherry picked from commit 41d70a5905c152d26217cc152a1748c337cfd81e)
|
|
take only as much time as it does in Visual Studio 2019
|
|
(cherry picked from commit c8fed48b161cfff5fa90d8bf4342ede88086ada4)
|
|
metrics (#25136)
* Core/Metric: Add new cmake option WITH_DETAILED_METRICS to enable more metrics
Add more detailed metrics in World::UpdateSessions().
* Attempt using C++17 features
* Fix cmake typo
Co-authored-by: NoName <322016+Faq@users.noreply.github.com>
* Fix build with WITHOUT_METRICS
* Update Performance profiling dashboard with Update sessions panel
* Add panel to show sessions with update time above 100 ms
* Move legends on the right and add max update time diff in the legend of sessions
Co-authored-by: NoName <322016+Faq@users.noreply.github.com>
(cherry picked from commit 36ef487a90d0d14c4da8ce7e19b5916b8b15056c)
|
|
gold is an ELF-only linker which has a better performance
than the default ld.
(cherry picked from commit 796e2b32e03e7b1a56e44bd4b8988f9156bbb026)
|
|
To enable the test suite, make sure to configure CMake with -DBUILD_TESTING=1 , since it is disabled by default. The catch2 dependency will be downloaded during configure time.
Also add a new target "tests-common", which includes unit tests for the "common" project. To finally run the tests use the "test" target.
CircleCI: Run unit tests
(cherry picked from commit 6a28ee7b2a4269aa7e43265d1cd0067537e3e883)
|
|
* Core/Metric: Add more metrics about World::Update() loop
* Add new Performance profiling grafana dashboard
* Add new cmake setting WITHOUT_METRICS that disables all metrics
As new metrics are added, someone might want to disable them if unused.
* Add more metrics about World::Update() loop
* Remove old performance profiling features
Remove "server set difftime" command, "-RecordUpdateTimeDiffInterval" and "MinRecordUpdateTimeDiff" worldserver config settings and their related code.
The whole UpdateTime class could be removed too.
* Update and rename 2020_07_99_99_world.sql to 2020_07_24_00_world.sql
(cherry picked from commit 3c0ac7302f902d1811d2c215217a3d701f8b5b19)
|
|
* Misc: Use [[fallthrough]] attribute instead of comment to mark intentional fallthroughs
Related: #25006
* Misc: Add some missing breaks (no-ops) to satisfy clang
Related: #25006
Closes #25055
* Build: Enable -Wimplicit-fallthrough on clang
Closes #25006
|