2

I'm trying to build a couple of projects on the command like but I keep getting screwed up by an failure to find <cstdint>. The project tries to build an when it gets to a specific line in the include path, specifically #include <cstdint> it throws an error

fatal error: 'cstdint' file not found.

This is baffling because this file is in my home path it looks like but it can't be found. I really don't know that much about compilers and paths so please excuse my ignorance.

A little background about my computer and what I'm trying to run. It is a MacBook Pro and I'm running Xcode 4.6.2. The framework that I'm building against is the Cinder framework and the file that is throwing the error is Cinder.h. Any help would be greatly appreciated. Thank you!

Adam Rosenfield
  • 390,455
  • 97
  • 512
  • 589
Ryan Bartley
  • 606
  • 8
  • 17

1 Answers1

1

You must build with -std=c++0x

michael-tkach
  • 259
  • 1
  • 5