сначала получил вот такую ошибку:
Код
Error[25]: #error '"<yvals.h> compiled with wrong (version of IAR) compiler"'. C:\Program Files\IAR Systems\Embedded Workbench 5.4\arm\INC\yvals.h 31
проверку версии компилятора убрал и получил следующую ошибку:
Код
Error[3]: Invalid #include file name C:\Program Files\IAR Systems\Embedded Workbench 5.4\arm\INC\DLib_Defaults.h 41
вот на эти строки кода:
Код
/* Include the main configuration header file. */
#if defined(_DLIB_CONFIG_FILE_HEADER_NAME)
#include _DLIB_CONFIG_FILE_HEADER_NAME <----- этого инклуда препроцессор не знает :(
/* _DLIB_CONFIG_FILE_STRING is the quoted variant of above */
#elif defined(_DLIB_CONFIG_FILE)
#include _STRINGIFY(_DLIB_CONFIG_FILE)
#else
#pragma message("Library configuration file is not specified. Use\
--dlib_config, please see the compiler reference guide for details.")
#endif
#if defined(_DLIB_CONFIG_FILE_HEADER_NAME)
#include _DLIB_CONFIG_FILE_HEADER_NAME <----- этого инклуда препроцессор не знает :(
/* _DLIB_CONFIG_FILE_STRING is the quoted variant of above */
#elif defined(_DLIB_CONFIG_FILE)
#include _STRINGIFY(_DLIB_CONFIG_FILE)
#else
#pragma message("Library configuration file is not specified. Use\
--dlib_config, please see the compiler reference guide for details.")
#endif
В IARе я совсем новичок, может кто из знающих сталкивался и сможет подсказать по какой причине возникли эти ошибки и как их забороть? Был бы очень признателен.