Skip to content

Commit

Permalink
*fix bug: MSVS compiler bug (Windows, Arm64).
Browse files Browse the repository at this point in the history
  • Loading branch information
ermig1979 committed Dec 13, 2022
1 parent 2168303 commit ff4409a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions docs/2023.html
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ <h5>New features</h5>
<h5>Bug fixing</h5>
<ul>
<li>Wrong assert in AVX-512BW optimizations of function BgrToRgb.</li>
<li>MSVS compiler bug (Windows, Arm64).</li>
</ul>

<h4>Test framework</h4>
Expand Down
2 changes: 1 addition & 1 deletion src/Simd/SimdDefs.h
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@

#endif//defined(SIMD_X64_ENABLE) || defined(SIMD_X86_ENABLE)

#if defined(SIMD_ARM_ENABLE)
#if defined(SIMD_ARM_ENABLE) || defined(SIMD_ARM64_ENABLE)

#if !defined(SIMD_NEON_DISABLE) && _MSC_VER >= 1700
#define SIMD_NEON_ENABLE
Expand Down

2 comments on commit ff4409a

@Edi61
Copy link
Contributor

@Edi61 Edi61 commented on ff4409a Dec 13, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

With this change the warning "platform is unsupported" is solved, but now there are many other errors, see attached log-file.
install-arm64-windows-dbg-out.log

@ermig1979
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi. I did some fix. Unfortunately I can't check them because I don't have any arm device with Windows and Microsoft Visual Studio compiler does not support cross compilation.
Also I created corresponding issue. So if you find any else error I would ask you to write your messages there.

Please sign in to comment.