0

I have a codebase that I can compile and run on my mac but not on my remote linux box and I am not sure why.

When I compile I get the error

fatal error: simd/simd.h: No such file or directory

I am running the command

g++ -std=c++11 -c Tester.cpp

I have been trying install simd but I cant find instructions for that anywhere. I must not be looking in the right place? Is it possible simd is just not available on my linux machine?

J.Doe
  • 1,502
  • 13
  • 47
  • 3
    What functions are you expecting to find in it? `#include ` for Intel's x86 SIMD intriniscs. https://software.intel.com/sites/landingpage/IntrinsicsGuide/. (And see https://stackoverflow.com/tags/sse/info) – Peter Cordes Aug 19 '18 at 20:09

1 Answers1

0

That appears to be some OS X specific header.

Shawn
  • 47,241
  • 3
  • 26
  • 60