parseToPOD RTEMS

This commit is contained in:
Matej Sekoranja
2014-01-31 11:53:51 +01:00
parent 5bdcaf43db
commit 06e9c533e3
2 changed files with 3 additions and 1 deletions

View File

@@ -108,5 +108,7 @@ LIBSRCS += monitor.cpp
LIBRARY = pvData
pvData_LIBS += Com
USR_CXXFLAGS_RTEMS = -D__rtems__
include $(TOP)/configure/RULES

View File

@@ -14,7 +14,7 @@
#include "typeCast.h"
// need to use "long long" when sizeof(int)==sizeof(long)
#if (ULONG_MAX == 0xfffffffful) || defined(_WIN32)
#if (ULONG_MAX == 0xfffffffful) || defined(_WIN32) || defined(__rtems__)
#define NEED_LONGLONG
#endif