Skip to content

Commit

Permalink
Fix to include immintrin.h only for x86_64 build
Browse files Browse the repository at this point in the history
  • Loading branch information
ryukau committed May 6, 2023
1 parent 17496b4 commit 9ddefee
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/juce_ScopedNoDenormal.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,9 @@ Below is list of original JUCE 7 source files.
#include <float.h>
#endif

#include <immintrin.h>
#if INTEL_CPU
#include <immintrin.h>
#endif

namespace SomeDSP {

Expand Down

0 comments on commit 9ddefee

Please sign in to comment.