Skip to content

Commit

Permalink
Little step further to fix M1 build. (yvt#937)
Browse files Browse the repository at this point in the history
opusfile native for ARM is existing.
Angelscript needs update to have ARM64 calling convention.
  • Loading branch information
devnexen authored Jan 13, 2021
1 parent c073c92 commit 457b9eb
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Sources/Draw/GLRadiosityRenderer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,12 @@

#include <Core/ConcurrentDispatch.h>
#include <Core/Settings.h>
#ifdef __APPLE__
#if defined(__APPLE__)
#if defined(__x86_64__)
#include <xmmintrin.h>
#else
#include <arm_neon.h>
#endif
#endif

#include "GLProfiler.h"
Expand Down

0 comments on commit 457b9eb

Please sign in to comment.