8000 Tags · sysfce2/rtm · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Tags: sysfce2/rtm

Tags

v2.3.0

Toggle v2.3.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
chore: prepare release 2.3 (nfrechette#209)

v2.2.1

Toggle v2.2.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
chore: prepare release 2.2.1 (nfrechette#197)

v2.2.0

Toggle v2.2.0's commit message
chore: update change log

v2.1.5

Toggle v2.1.5's commit message
chore: update change log

v2.1.4

Toggle v2.1.4's commit message
chore: update change log

v2.1.3

Toggle v2.1.3's commit message
fix: disable versioned namespace by default for now

v2.1.2

Toggle v2.1.2's commit message
chore: update change log

v2.1.1

Toggle v2.1.1's commit message
chore: update change log

v2.1.0

Toggle v2.1.0's commit message
docs: update .all-contributorsrc [skip ci]

v2.0.0

Toggle v2.0.0's commit message
fix: disable MSVC security buffer checks

Because scalarf and other types are wrapped by structs, sometimes MSVC generates
security buffer checks when /GS is used. That option is also enabled by default and
required on the XB1. This can cause functions as short as 8 instructions to fail to inline
because the security check adds another 8 instruction. This can significantly degrade
performance in math heavy and hot code. Not every function is vulnerable to this but
as a safety precaution, it will be set on every function. RTM code is very simple to
manually validate for stack safety, we do not need the compiler's help.
0