diff options
-rw-r--r-- | readme.md | 4 | ||||
-rw-r--r-- | readme.txt | 4 |
2 files changed, 6 insertions, 2 deletions
@@ -1,6 +1,6 @@ [![Build Status](https://travis-ci.org/herumi/xbyak.png)](https://travis-ci.org/herumi/xbyak) -# Xbyak 5.93 ; JIT assembler for x86(IA32), x64(AMD64, x86-64) by C++ +# Xbyak 5.94 ; JIT assembler for x86(IA32), x64(AMD64, x86-64) by C++ ## Abstract @@ -16,6 +16,7 @@ Use `and_()`, `or_()`, ... instead of `and()`, `or()`. If you want to use them, then specify `-fno-operator-names` option to gcc/clang. ### News +- (Windows) `#include <winsock2.h>` has been removed from xbyak.h, so add it explicitly if you need it. - support exception-less mode see. [Exception-less mode](#exception-less-mode) - `XBYAK_USE_MMAP_ALLOCATOR` will be defined on Linux/macOS unless `XBYAK_DONT_USE_MMAP_ALLOCATOR` is defined. @@ -435,6 +436,7 @@ modified new BSD License http://opensource.org/licenses/BSD-3-Clause ## History +* 2020/Jul/28 ver 5.94 remove #include <winsock2.h> (only windows) * 2020/Jul/21 ver 5.93 support exception-less mode * 2020/Jun/30 ver 5.92 support Intel AMX instruction set (Thanks to nshustrov) * 2020/Jun/22 ver 5.913 fix mov(r64, imm64) on 32-bit env with XBYAK64 @@ -1,5 +1,5 @@ - C++用x86(IA-32), x64(AMD64, x86-64) JITアセンブラ Xbyak 5.93
+ C++用x86(IA-32), x64(AMD64, x86-64) JITアセンブラ Xbyak 5.94
-----------------------------------------------------------------------------
◎概要
@@ -34,6 +34,7 @@ xbyak_bin2hex.h Linuxではmake installで/usr/local/include/xbyakにコピーされます。
-----------------------------------------------------------------------------
◎下位互換性の破れ
+* (Windows) `<winsock2.h>`をincludeしなくなったので必要なら明示的にincludeしてください。
* XBYAK_USE_MMAP_ALLOCATORがデフォルトで有効になりました。従来の方式にする場合はXBYAK_DONT_USE_MMAP_ALLOCATORを定義してください。
* Xbyak::Errorの型をenumからclassに変更
** 従来のenumの値をとるにはintにキャストしてください。
@@ -376,6 +377,7 @@ sample/{echo,hello}.bfは http://www.kmonos.net/alang/etc/brainfuck.php から -----------------------------------------------------------------------------
◎履歴
+2020/07/28 ver 5.94 #include <winsock2.h>の削除 (only windows)
2020/07/21 ver 5.93 例外なしモード追加
2020/06/30 ver 5.92 Intel AMX命令サポート (Thanks to nshustrov)
2020/06/19 ver 5.913 32ビット環境でXBYAK64を定義したときのmov(r64, imm64)を修正
|