Skip to content

Commit 76dc007

Browse files
committed
fix sse2 support
1 parent 1a28148 commit 76dc007

4 files changed

Lines changed: 6 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
## Changelog
22

3+
### [1.10.1] - 2022-11-02
4+
#### Fixed
5+
- fix broken sse2 support
6+
37
### [1.10.0] - 2022-10-29
48
#### Fixed
59
- fix bug in `Levenshtein.editops` leading to crashes when used with `score_hint`

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ if (CMAKE_BINARY_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR)
2020
message(FATAL_ERROR "Building in-source is not supported! Create a build dir and remove ${CMAKE_SOURCE_DIR}/CMakeCache.txt")
2121
endif()
2222

23-
project(rapidfuzz LANGUAGES CXX VERSION 1.10.0)
23+
project(rapidfuzz LANGUAGES CXX VERSION 1.10.1)
2424

2525
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/cmake")
2626
include(GNUInstallDirs)

extras/rapidfuzz_amalgamated.hpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Licensed under the MIT License <http://opensource.org/licenses/MIT>.
22
// SPDX-License-Identifier: MIT
33
// RapidFuzz v1.0.2
4-
// Generated: 2022-10-30 00:14:59.369071
4+
// Generated: 2022-11-02 21:25:29.646502
55
// ----------------------------------------------------------
66
// This file is an amalgamation of multiple different files.
77
// You probably shouldn't edit it directly.
@@ -2258,7 +2258,6 @@ native_simd<T> operator~(const native_simd<T>& a) noexcept
22582258
# include <emmintrin.h>
22592259
# include <ostream>
22602260
# include <stdint.h>
2261-
# include <tmmintrin.h>
22622261

22632262
namespace rapidfuzz {
22642263
namespace detail {

rapidfuzz/details/simd_sse2.hpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
#include <ostream>
88
#include <rapidfuzz/details/intrinsics.hpp>
99
#include <stdint.h>
10-
#include <tmmintrin.h>
1110

1211
namespace rapidfuzz {
1312
namespace detail {

0 commit comments

Comments
 (0)