Hi all, Just seeking some info here. The file stdint.h was part of the C99 standard and has types for integers of specified width and thus could be used to simplify some of the numpy configuration. I'm curious as to which compilers might be a problem and what folks think of that possibility. Chuck
On Thu, May 23, 2013 at 1:44 PM, Charles R Harris <charlesr.harris@gmail.com> wrote:
Just seeking some info here. The file stdint.h was part of the C99 standard and has types for integers of specified width and thus could be used to simplify some of the numpy configuration. I'm curious as to which compilers might be a problem and what folks think of that possibility.
MSVC 2008, which is the (still!) the standard compiler for Python <= 2.7, does not include that header. Newer MSVC versions do. However, I'm a big fan of stdint.h, so I think it should be used. I'll bet we can find a header file for MSVC 2008 that could be included with numpy. (OK -- not bet much, but worth looking for!) -Chris -- Christopher Barker, Ph.D. Oceanographer Emergency Response Division NOAA/NOS/OR&R (206) 526-6959 voice 7600 Sand Point Way NE (206) 526-6329 fax Seattle, WA 98115 (206) 526-6317 main reception Chris.Barker@noaa.gov
On Thu, May 23, 2013 at 11:44 PM, Chris Barker - NOAA Federal <chris.barker@noaa.gov> wrote:
On Thu, May 23, 2013 at 1:44 PM, Charles R Harris <charlesr.harris@gmail.com> wrote:
Just seeking some info here. The file stdint.h was part of the C99 standard and has types for integers of specified width and thus could be used to simplify some of the numpy configuration. I'm curious as to which compilers might be a problem and what folks think of that possibility.
MSVC 2008, which is the (still!) the standard compiler for Python <= 2.7, does not include that header. Newer MSVC versions do.
There are stdint,h for msvc hanging around, like here: https://code.google.com/p/msinttypes/ David
participants (3)
-
Charles R Harris
-
Chris Barker - NOAA Federal
-
David Cournapeau