mirror of
https://github.com/ETLCPP/etl.git
synced 2026-06-28 05:18:43 +08:00
Merge branch 'development'
This commit is contained in:
commit
831d5dc98e
@ -94,17 +94,17 @@ namespace etl
|
||||
///\ingroup error_handler
|
||||
//***************************************************************************
|
||||
#if defined(ETL_NO_CHECKS)
|
||||
#define ETL_ASSERT(b, e) (true) // Does nothing. Evaluates to 'true'.
|
||||
#define ETL_ASSERT(b, e) (true) // Does nothing. Evaluates to 'true'.
|
||||
#elif defined(ETL_THROW_EXCEPTIONS)
|
||||
#define ETL_ASSERT(b, e) (((b) ? true : throw((e))), true) // Throws an exception if the condition fails. Evaluates to 'true'.
|
||||
#define ETL_ASSERT(b, e) (((b) ? true : throw((e))), true) // Throws an exception if the condition fails. Evaluates to 'true'.
|
||||
#elif defined(ETL_LOG_ERRORS)
|
||||
#define ETL_ASSERT(b, e) (((b) ? true : etl::error_handler::error((e))), (b)) // Logs the error if the condition fails. Evaluates to the result of the condition.
|
||||
#define ETL_ASSERT(b, e) (((b) ? true : etl::error_handler::error((e))), (b)) // Logs the error if the condition fails. Evaluates to the result of the condition.
|
||||
#else
|
||||
#if defined(NDEBUG)
|
||||
#define ETL_ASSERT(b, e) (true) // Does nothing. Evaluates to 'true'.
|
||||
#elif
|
||||
#define ETL_ASSERT(b, e) ((assert((b))), true) // Asserts if the condition fails. Evaluates to 'true'.
|
||||
#endif
|
||||
#if defined(NDEBUG)
|
||||
#define ETL_ASSERT(b, e) (true) // Does nothing. Evaluates to 'true'.
|
||||
#else
|
||||
#define ETL_ASSERT(b, e) ((assert((b))), true) // Asserts if the condition fails. Evaluates to 'true'.
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if defined(ETL_VERBOSE_ERRORS)
|
||||
|
||||
@ -48,7 +48,7 @@ SOFTWARE.
|
||||
|
||||
namespace etl
|
||||
{
|
||||
template <typename TKey, typename TValue, const size_t MAX_SIZE_, typename TCompare = std::less<TKey>>
|
||||
template <typename TKey, typename TValue, const size_t MAX_SIZE_, typename TCompare = std::less<TKey> >
|
||||
//***************************************************************************
|
||||
/// A flat_map implementation that uses a fixed size buffer.
|
||||
///\tparam TKey The key type.
|
||||
|
||||
@ -48,7 +48,7 @@ SOFTWARE.
|
||||
|
||||
namespace etl
|
||||
{
|
||||
template <typename TKey, typename TValue, const size_t MAX_SIZE_, typename TCompare = std::less<TKey>>
|
||||
template <typename TKey, typename TValue, const size_t MAX_SIZE_, typename TCompare = std::less<TKey> >
|
||||
//***************************************************************************
|
||||
/// A flat_multimap implementation that uses a fixed size buffer.
|
||||
///\tparam TKey The key type.
|
||||
|
||||
@ -48,7 +48,7 @@ SOFTWARE.
|
||||
|
||||
namespace etl
|
||||
{
|
||||
template <typename T, const size_t MAX_SIZE_, typename TCompare = std::less<T>>
|
||||
template <typename T, const size_t MAX_SIZE_, typename TCompare = std::less<T> >
|
||||
//***************************************************************************
|
||||
/// A flat_multiset implementation that uses a fixed size buffer.
|
||||
///\tparam T The value type.
|
||||
|
||||
@ -48,7 +48,7 @@ SOFTWARE.
|
||||
|
||||
namespace etl
|
||||
{
|
||||
template <typename T, const size_t MAX_SIZE_, typename TCompare = std::less<T>>
|
||||
template <typename T, const size_t MAX_SIZE_, typename TCompare = std::less<T> >
|
||||
//***************************************************************************
|
||||
/// A flat_set implementation that uses a fixed size buffer.
|
||||
///\tparam T The value type.
|
||||
|
||||
@ -51,7 +51,7 @@ namespace etl
|
||||
/// Can be used as a reference type for all flat_maps containing a specific type.
|
||||
///\ingroup flat_map
|
||||
//***************************************************************************
|
||||
template <typename TKey, typename TMapped, typename TKeyCompare = std::less<TKey>>
|
||||
template <typename TKey, typename TMapped, typename TKeyCompare = std::less<TKey> >
|
||||
class iflat_map : public flat_map_base
|
||||
{
|
||||
public:
|
||||
|
||||
@ -51,7 +51,7 @@ namespace etl
|
||||
/// Can be used as a reference type for all flat_multimaps containing a specific type.
|
||||
///\ingroup flat_multimap
|
||||
//***************************************************************************
|
||||
template <typename TKey, typename TMapped, typename TKeyCompare = std::less<TKey>>
|
||||
template <typename TKey, typename TMapped, typename TKeyCompare = std::less<TKey> >
|
||||
class iflat_multimap : public flat_multimap_base
|
||||
{
|
||||
public:
|
||||
|
||||
@ -51,7 +51,7 @@ namespace etl
|
||||
/// Can be used as a reference type for all flat_multisets containing a specific type.
|
||||
///\ingroup flat_multiset
|
||||
//***************************************************************************
|
||||
template <typename T, typename TKeyCompare = std::less<T>>
|
||||
template <typename T, typename TKeyCompare = std::less<T> >
|
||||
class iflat_multiset : public flat_multiset_base
|
||||
{
|
||||
private:
|
||||
|
||||
19
iflat_set.h
19
iflat_set.h
@ -51,7 +51,7 @@ namespace etl
|
||||
/// Can be used as a reference type for all flat_sets containing a specific type.
|
||||
///\ingroup flat_set
|
||||
//***************************************************************************
|
||||
template <typename T, typename TKeyCompare = std::less<T>>
|
||||
template <typename T, typename TKeyCompare = std::less<T> >
|
||||
class iflat_set : public flat_set_base
|
||||
{
|
||||
private:
|
||||
@ -226,7 +226,7 @@ namespace etl
|
||||
|
||||
if (i_element == end())
|
||||
{
|
||||
// At the end.
|
||||
// At the end. Doesn't exist.
|
||||
buffer.push_back(value);
|
||||
result.first = end() - 1;
|
||||
result.second = true;
|
||||
@ -234,9 +234,18 @@ namespace etl
|
||||
else
|
||||
{
|
||||
// Not at the end.
|
||||
buffer.insert(i_element, value);
|
||||
result.first = i_element;
|
||||
result.second = true;
|
||||
// Does not exist already?
|
||||
if (*i_element != value)
|
||||
{
|
||||
buffer.insert(i_element, value);
|
||||
result.first = i_element;
|
||||
result.second = true;
|
||||
}
|
||||
else
|
||||
{
|
||||
result.first = i_element;
|
||||
result.second = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
2
map.h
2
map.h
@ -50,7 +50,7 @@ namespace etl
|
||||
//*************************************************************************
|
||||
/// A templated map implementation that uses a fixed size buffer.
|
||||
//*************************************************************************
|
||||
template <typename TKey, typename TValue, const size_t MAX_SIZE_, typename TCompare = std::less<TKey>>
|
||||
template <typename TKey, typename TValue, const size_t MAX_SIZE_, typename TCompare = std::less<TKey> >
|
||||
class map : public imap<TKey, TValue, TCompare>
|
||||
{
|
||||
public:
|
||||
|
||||
@ -49,7 +49,7 @@ namespace etl
|
||||
//*************************************************************************
|
||||
/// A templated multimap implementation that uses a fixed size buffer.
|
||||
//*************************************************************************
|
||||
template <typename TKey, typename TValue, const size_t MAX_SIZE_, typename TCompare = std::less<TKey>>
|
||||
template <typename TKey, typename TValue, const size_t MAX_SIZE_, typename TCompare = std::less<TKey> >
|
||||
class multimap : public imultimap<TKey, TValue, TCompare>
|
||||
{
|
||||
public:
|
||||
|
||||
@ -49,7 +49,7 @@ namespace etl
|
||||
//*************************************************************************
|
||||
/// A templated multiset implementation that uses a fixed size buffer.
|
||||
//*************************************************************************
|
||||
template <typename T, const size_t MAX_SIZE_, typename TCompare = std::less<TKey>>
|
||||
template <typename T, const size_t MAX_SIZE_, typename TCompare = std::less<TKey> >
|
||||
class multiset : public imultiset<T, TCompare>
|
||||
{
|
||||
public:
|
||||
|
||||
2
set.h
2
set.h
@ -50,7 +50,7 @@ namespace etl
|
||||
//*************************************************************************
|
||||
/// A templated set implementation that uses a fixed size buffer.
|
||||
//*************************************************************************
|
||||
template <typename T, const size_t MAX_SIZE_, typename TCompare = std::less<T>>
|
||||
template <typename T, const size_t MAX_SIZE_, typename TCompare = std::less<T> >
|
||||
class set : public iset<T, TCompare>
|
||||
{
|
||||
public:
|
||||
|
||||
623
test/iar/etl.dep
623
test/iar/etl.dep
@ -2,210 +2,258 @@
|
||||
|
||||
<project>
|
||||
<fileVersion>2</fileVersion>
|
||||
<fileChecksum>4196203668</fileChecksum>
|
||||
<fileChecksum>2147248192</fileChecksum>
|
||||
<configuration>
|
||||
<name>Debug</name>
|
||||
<outputs>
|
||||
<file>$PROJ_DIR$\..\..\bitset.h</file>
|
||||
<file>$PROJ_DIR$\..\..\alignment.h</file>
|
||||
<file>$PROJ_DIR$\..\..\algorithm.h</file>
|
||||
<file>$PROJ_DIR$\..\..\array.h</file>
|
||||
<file>$PROJ_DIR$\..\..\crc16.cpp</file>
|
||||
<file>$PROJ_DIR$\..\..\container.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\time.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\clocale</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\xmtx.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\ymath.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\cpp\typeinfo</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\xlocale_lconv.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\cpp\xlocale</file>
|
||||
<file>$TOOLKIT_DIR$\inc\cpp\xdebug</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\xlocale_c.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\cpp\streambuf</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\xtls.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\xlocaleuse.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\ctime</file>
|
||||
<file>$TOOLKIT_DIR$\inc\cpp\stdexcept</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\xtgmath.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\cpp\xstring</file>
|
||||
<file>$TOOLKIT_DIR$\inc\cpp\xlocinfo</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\cctype</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\locale.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\cpp\functional</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\xlocale.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\cpp\xiosbase</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\ctype.h</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\crc16_kermit.__cstat.et</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\md5.o</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\crc32.__cstat.et</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\pearson.o</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\test_compile.__cstat.et</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\md5.pbi</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\crc64_ecma.__cstat.et</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\pearson.pbi</file>
|
||||
<file>$PROJ_DIR$\..\..\crc32.h</file>
|
||||
<file>$PROJ_DIR$\..\..\crc32.cpp</file>
|
||||
<file>$PROJ_DIR$\..\..\crc16_kermit.cpp</file>
|
||||
<file>$PROJ_DIR$\..\..\checksum.h</file>
|
||||
<file>$PROJ_DIR$\..\..\crc64_ecma.h</file>
|
||||
<file>$PROJ_DIR$\..\..\crc64_ecma.cpp</file>
|
||||
<file>$PROJ_DIR$\..\..\crc16_ccitt.h</file>
|
||||
<file>$PROJ_DIR$\..\..\container.h</file>
|
||||
<file>$PROJ_DIR$\..\..\crc16.cpp</file>
|
||||
<file>$PROJ_DIR$\..\..\crc16_kermit.h</file>
|
||||
<file>$PROJ_DIR$\..\..\crc16.h</file>
|
||||
<file>$PROJ_DIR$\..\..\crc16_ccitt.cpp</file>
|
||||
<file>$PROJ_DIR$\..\..\crc16_kermit.cpp</file>
|
||||
<file>$PROJ_DIR$\..\..\crc32.cpp</file>
|
||||
<file>$PROJ_DIR$\..\..\crc16_kermit.h</file>
|
||||
<file>$PROJ_DIR$\..\..\crc64_ecma.h</file>
|
||||
<file>$PROJ_DIR$\..\..\crc32.h</file>
|
||||
<file>$PROJ_DIR$\..\..\crc64_ecma.cpp</file>
|
||||
<file>$PROJ_DIR$\..\..\crc8_ccitt.cpp</file>
|
||||
<file>$PROJ_DIR$\..\..\crc8_ccitt.h</file>
|
||||
<file>$PROJ_DIR$\..\..\cyclic_value.h</file>
|
||||
<file>$PROJ_DIR$\..\..\doxygen.h</file>
|
||||
<file>$PROJ_DIR$\..\..\deque.h</file>
|
||||
<file>$PROJ_DIR$\..\..\deque_base.h</file>
|
||||
<file>$PROJ_DIR$\..\..\exception.h</file>
|
||||
<file>$PROJ_DIR$\..\..\endian.h</file>
|
||||
<file>$PROJ_DIR$\..\..\enum_type.h</file>
|
||||
<file>$PROJ_DIR$\..\..\error_handler.cpp</file>
|
||||
<file>$PROJ_DIR$\..\..\error_handler.h</file>
|
||||
<file>$PROJ_DIR$\..\..\factorial.h</file>
|
||||
<file>$PROJ_DIR$\..\..\fibonacci.h</file>
|
||||
<file>$PROJ_DIR$\..\..\forward_list.h</file>
|
||||
<file>$PROJ_DIR$\..\..\functional.h</file>
|
||||
<file>$PROJ_DIR$\..\..\forward_list_base.h</file>
|
||||
<file>$PROJ_DIR$\..\..\function.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\xmtx.h</file>
|
||||
<file>$PROJ_DIR$\..\..\ideque.h</file>
|
||||
<file>$PROJ_DIR$\..\..\iforward_list.h</file>
|
||||
<file>$PROJ_DIR$\..\..\ilist.h</file>
|
||||
<file>$PROJ_DIR$\..\..\integral_limits.h</file>
|
||||
<file>$PROJ_DIR$\..\..\imap.h</file>
|
||||
<file>$PROJ_DIR$\..\..\ipool.h</file>
|
||||
<file>$PROJ_DIR$\..\..\iqueue.h</file>
|
||||
<file>$PROJ_DIR$\..\..\endian.h</file>
|
||||
<file>$PROJ_DIR$\..\..\error_handler.h</file>
|
||||
<file>$PROJ_DIR$\..\..\etlhash.h</file>
|
||||
<file>$PROJ_DIR$\..\..\cyclic_value.h</file>
|
||||
<file>$PROJ_DIR$\..\..\crc8_ccitt.cpp</file>
|
||||
<file>$PROJ_DIR$\..\..\deque_base.h</file>
|
||||
<file>$PROJ_DIR$\..\..\deque.h</file>
|
||||
<file>$PROJ_DIR$\..\..\enum_type.h</file>
|
||||
<file>$PROJ_DIR$\..\..\doxygen.h</file>
|
||||
<file>$PROJ_DIR$\..\..\crc8_ccitt.h</file>
|
||||
<file>$PROJ_DIR$\..\..\iflat_set.h</file>
|
||||
<file>$PROJ_DIR$\..\..\function.h</file>
|
||||
<file>$PROJ_DIR$\..\..\iflat_map.h</file>
|
||||
<file>$PROJ_DIR$\..\..\iforward_list.h</file>
|
||||
<file>$PROJ_DIR$\..\..\ideque.h</file>
|
||||
<file>$PROJ_DIR$\..\..\iflat_multimap.h</file>
|
||||
<file>$PROJ_DIR$\..\..\functional.h</file>
|
||||
<file>$PROJ_DIR$\..\..\hash.h</file>
|
||||
<file>$PROJ_DIR$\..\..\iflat_multiset.h</file>
|
||||
<file>$PROJ_DIR$\..\..\forward_list.h</file>
|
||||
<file>$PROJ_DIR$\..\..\forward_list_base.h</file>
|
||||
<file>$PROJ_DIR$\..\..\ibitset.h</file>
|
||||
<file>$PROJ_DIR$\..\..\icache.h</file>
|
||||
<file>$PROJ_DIR$\..\..\flat_multiset.h</file>
|
||||
<file>$PROJ_DIR$\..\..\flat_set.h</file>
|
||||
<file>$PROJ_DIR$\..\..\fixed_iterator.h</file>
|
||||
<file>$PROJ_DIR$\..\..\flat_map.h</file>
|
||||
<file>$PROJ_DIR$\..\..\fibonacci.h</file>
|
||||
<file>$PROJ_DIR$\..\..\exception.h</file>
|
||||
<file>$PROJ_DIR$\..\..\fnv_1.h</file>
|
||||
<file>$PROJ_DIR$\..\..\flat_multimap.h</file>
|
||||
<file>$PROJ_DIR$\..\..\factorial.h</file>
|
||||
<file>$PROJ_DIR$\..\..\istack.h</file>
|
||||
<file>$PROJ_DIR$\..\..\largest.h</file>
|
||||
<file>$PROJ_DIR$\..\..\ivector.h</file>
|
||||
<file>$PROJ_DIR$\..\..\numeric.h</file>
|
||||
<file>$PROJ_DIR$\..\..\mru_cache.h</file>
|
||||
<file>$PROJ_DIR$\..\..\md5.cpp</file>
|
||||
<file>$PROJ_DIR$\..\..\iunordered_map.h</file>
|
||||
<file>$PROJ_DIR$\..\..\list.h</file>
|
||||
<file>$PROJ_DIR$\..\..\jenkins.h</file>
|
||||
<file>$PROJ_DIR$\..\..\iset.h</file>
|
||||
<file>$PROJ_DIR$\..\..\list_base.h</file>
|
||||
<file>$PROJ_DIR$\..\..\map.h</file>
|
||||
<file>$PROJ_DIR$\..\..\map_base.h</file>
|
||||
<file>$PROJ_DIR$\..\..\log.h</file>
|
||||
<file>$PROJ_DIR$\..\..\nullptr.h</file>
|
||||
<file>$PROJ_DIR$\..\..\observer.h</file>
|
||||
<file>$PROJ_DIR$\..\..\parameter_type.h</file>
|
||||
<file>$PROJ_DIR$\..\..\power.h</file>
|
||||
<file>$PROJ_DIR$\..\..\ivector.h</file>
|
||||
<file>$PROJ_DIR$\..\..\lru_cache.h</file>
|
||||
<file>$PROJ_DIR$\..\..\map.h</file>
|
||||
<file>$PROJ_DIR$\..\..\md5.h</file>
|
||||
<file>$PROJ_DIR$\..\..\map_base.h</file>
|
||||
<file>$PROJ_DIR$\..\..\imru_cache.h</file>
|
||||
<file>$PROJ_DIR$\..\..\ilru_cache.h</file>
|
||||
<file>$PROJ_DIR$\..\..\imultiset.h</file>
|
||||
<file>$PROJ_DIR$\..\..\imap.h</file>
|
||||
<file>$PROJ_DIR$\..\..\integral_limits.h</file>
|
||||
<file>$PROJ_DIR$\..\..\intrusive_forward_list_node.h</file>
|
||||
<file>$PROJ_DIR$\..\..\intrusive_forward_list.h</file>
|
||||
<file>$PROJ_DIR$\..\..\imultimap.h</file>
|
||||
<file>$PROJ_DIR$\..\..\ipool.h</file>
|
||||
<file>$PROJ_DIR$\..\..\iqueue.h</file>
|
||||
<file>$PROJ_DIR$\..\..\io_port.h</file>
|
||||
<file>$PROJ_DIR$\..\..\instance_count.h</file>
|
||||
<file>$PROJ_DIR$\..\..\irr_cache.h</file>
|
||||
<file>$PROJ_DIR$\..\..\ipriority_queue.h</file>
|
||||
<file>$PROJ_DIR$\..\..\pearson.h</file>
|
||||
<file>$PROJ_DIR$\..\..\pool.h</file>
|
||||
<file>$PROJ_DIR$\..\..\queue.h</file>
|
||||
<file>$PROJ_DIR$\..\..\smallest.h</file>
|
||||
<file>$PROJ_DIR$\..\..\priority_queue.h</file>
|
||||
<file>$PROJ_DIR$\..\..\queue_base.h</file>
|
||||
<file>$PROJ_DIR$\..\..\static_assert.h</file>
|
||||
<file>$PROJ_DIR$\..\..\rr_cache.h</file>
|
||||
<file>$PROJ_DIR$\..\..\radix.h</file>
|
||||
<file>$PROJ_DIR$\..\..\set.h</file>
|
||||
<file>$PROJ_DIR$\..\..\smallest.h</file>
|
||||
<file>$PROJ_DIR$\..\..\parameter_type.h</file>
|
||||
<file>$PROJ_DIR$\..\..\queue.h</file>
|
||||
<file>$PROJ_DIR$\..\..\stack.h</file>
|
||||
<file>$PROJ_DIR$\..\..\reverse_pointer.h</file>
|
||||
<file>$PROJ_DIR$\..\..\stack_base.h</file>
|
||||
<file>$PROJ_DIR$\..\..\type_traits.h</file>
|
||||
<file>$PROJ_DIR$\..\..\variant.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\cpp\memory</file>
|
||||
<file>$PROJ_DIR$\..\..\vector.h</file>
|
||||
<file>$PROJ_DIR$\..\..\vector_base.h</file>
|
||||
<file>$PROJ_DIR$\..\..\visitor.h</file>
|
||||
<file>$PROJ_DIR$\..\test_compile.cpp</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\crc16_kermit.pbi</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\crc16.pbi</file>
|
||||
<file>$PROJ_DIR$\Debug\Exe\cpp.out</file>
|
||||
<file>$PROJ_DIR$\..\..\power.h</file>
|
||||
<file>$PROJ_DIR$\..\..\pearson.cpp</file>
|
||||
<file>$PROJ_DIR$\..\..\static_assert.h</file>
|
||||
<file>$PROJ_DIR$\..\..\numeric.h</file>
|
||||
<file>$PROJ_DIR$\..\..\observer.h</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\crc16.__cstat.et</file>
|
||||
<file>$PROJ_DIR$\..\..\nullptr.h</file>
|
||||
<file>$PROJ_DIR$\..\..\murmur3.h</file>
|
||||
<file>$PROJ_DIR$\..\..\multi_loop.h</file>
|
||||
<file>$PROJ_DIR$\..\..\multi_array.h</file>
|
||||
<file>$PROJ_DIR$\..\..\optional.h</file>
|
||||
<file>$PROJ_DIR$\..\..\multimap.h</file>
|
||||
<file>$PROJ_DIR$\..\..\multiset.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\ycheck.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\DLib_Config_Normal.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\DLib_Defaults.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\stdint.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\DLib_Product.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\yvals.h</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\crc8_ccitt.pbi</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\crc64_ecma.pbi</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\crc32.pbi</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\stdlib.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\cstring</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\cstdlib</file>
|
||||
<file>$TOOLKIT_DIR$\inc\cpp\xlocinfo</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\test_compile.o</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\test_compile.pbi</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\cmath</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\ysizet.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\cpp\iterator</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\cwchar</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\DLib_Product_string.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\climits</file>
|
||||
<file>$TOOLKIT_DIR$\inc\cpp\exception</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\stdio.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\cpp\ostream</file>
|
||||
<file>$TOOLKIT_DIR$\inc\cpp\typeinfo</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\ctype.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\xlocaleuse.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\wchar.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\cpp\xstring</file>
|
||||
<file>$TOOLKIT_DIR$\inc\cpp\xutility</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\stddef.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\cpp\functional</file>
|
||||
<file>$TOOLKIT_DIR$\inc\cpp\utility</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\ystdio.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\cpp\ios</file>
|
||||
<file>$TOOLKIT_DIR$\inc\cpp\stdexcept</file>
|
||||
<file>$TOOLKIT_DIR$\inc\cpp\xdebug</file>
|
||||
<file>$TOOLKIT_DIR$\config\generic.icf</file>
|
||||
<file>$TOOLKIT_DIR$\lib\dl4t_aln.a</file>
|
||||
<file>$TOOLKIT_DIR$\lib\m4t_al.a</file>
|
||||
<file>$TOOLKIT_DIR$\lib\shs_l.a</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\math.h</file>
|
||||
<file>$TOOLKIT_DIR$\lib\rt4t_al.a</file>
|
||||
<file>$TOOLKIT_DIR$\lib\dlpp4t_al_nc.a</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\clocale</file>
|
||||
<file>$TOOLKIT_DIR$\inc\cpp\xmemory</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\xlocale.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\xtls.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\cpp\algorithm</file>
|
||||
<file>$TOOLKIT_DIR$\inc\cpp\xstddef</file>
|
||||
<file>$TOOLKIT_DIR$\inc\cpp\new</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\cstddef</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\limits.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\cpp\iosfwd</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\cstdio</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\string.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\cpp\istream</file>
|
||||
<file>$TOOLKIT_DIR$\inc\cpp\xlocnum</file>
|
||||
<file>$TOOLKIT_DIR$\inc\cpp\streambuf</file>
|
||||
<file>$TOOLKIT_DIR$\inc\cpp\xiosbase</file>
|
||||
<file>$TOOLKIT_DIR$\inc\cpp\xlocale</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\cctype</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\ctime</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\xlocale_c.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\locale.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\xlocale_lconv.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\time.h</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\error_handler.pbi</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\DLib_Threads.h</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\error_handler.o</file>
|
||||
<file>$PROJ_DIR$\..\..\ibitset.h</file>
|
||||
<file>$PROJ_DIR$\Debug\List\cpp.map</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\ymath.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\xtgmath.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\xencoding_limits.h</file>
|
||||
<file>$PROJ_DIR$\Debug\Exe\cpp.out</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\DLib_Defaults.h</file>
|
||||
<file>$TOOLKIT_DIR$\lib\dl4t_aln.a</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\crc32.pbi</file>
|
||||
<file>$TOOLKIT_DIR$\lib\m4t_al.a</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\crc64_ecma.o</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\crc32.o</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\crc16.o</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\crc16_ccitt.o</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\etl.pbd</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\crc16_ccitt.pbi</file>
|
||||
<file>$TOOLKIT_DIR$\lib\rt4t_al.a</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\crc16_kermit.o</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\crc8_ccitt.o</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\DLib_Product.h</file>
|
||||
<file>$TOOLKIT_DIR$\config\generic.icf</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\DLib_Threads.h</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\crc32.o</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\test_compile.pbi</file>
|
||||
<file>$TOOLKIT_DIR$\lib\dlpp4t_al_nc.a</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\assert.h</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\error_handler.__cstat.et</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\crc16_kermit.pbi</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\crc8_ccitt.__cstat.et</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\yvals.h</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\crc16_ccitt.__cstat.et</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\stdint.h</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\test_compile.o</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\crc8_ccitt.pbi</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\crc16.pbi</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\DLib_Config_Normal.h</file>
|
||||
<file>$PROJ_DIR$\Debug\List\cpp.map</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\crc16.o</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\crc64_ecma.pbi</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\error_handler.pbi</file>
|
||||
<file>$PROJ_DIR$\..\..\visitor.h</file>
|
||||
<file>$PROJ_DIR$\..\..\unordered_map.h</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\crc16_ccitt.pbi</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\xencoding_limits.h</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\crc16_ccitt.o</file>
|
||||
<file>$PROJ_DIR$\..\..\vector.h</file>
|
||||
<file>$PROJ_DIR$\..\test_compile.cpp</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\error_handler.o</file>
|
||||
<file>$PROJ_DIR$\..\..\type_traits.h</file>
|
||||
<file>$PROJ_DIR$\..\..\variant.h</file>
|
||||
<file>$PROJ_DIR$\..\..\vector_base.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\cpp\xlocnum</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\cmath</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\math.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\cpp\ostream</file>
|
||||
<file>$TOOLKIT_DIR$\inc\cpp\ios</file>
|
||||
<file>$PROJ_DIR$\..\..\array.h</file>
|
||||
<file>$PROJ_DIR$\..\..\basic_intrusive_forward_list.h</file>
|
||||
<file>$PROJ_DIR$\..\..\ihash.h</file>
|
||||
<file>$PROJ_DIR$\..\..\bloom_filter.h</file>
|
||||
<file>$PROJ_DIR$\..\..\binary.h</file>
|
||||
<file>$PROJ_DIR$\..\..\io_port.h</file>
|
||||
<file>$PROJ_DIR$\..\..\alignment.h</file>
|
||||
<file>$PROJ_DIR$\..\..\algorithm.h</file>
|
||||
<file>$PROJ_DIR$\..\..\bsd_checksum.h</file>
|
||||
<file>$PROJ_DIR$\..\..\basic_intrusive_forward_list_node.h</file>
|
||||
<file>$PROJ_DIR$\..\..\bitset.h</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\pearson.__cstat.et</file>
|
||||
<file>$PROJ_DIR$\Debug\Obj\md5.__cstat.et</file>
|
||||
<file>$PROJ_DIR$\..\..\private\list_base.h</file>
|
||||
<file>$PROJ_DIR$\..\..\private\vector_base.h</file>
|
||||
<file>$PROJ_DIR$\..\..\private\pool_base.h</file>
|
||||
<file>$PROJ_DIR$\..\..\private\deque_base.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\stdlib.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\climits</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\cstdlib</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\wchar.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\cpp\xmemory</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\limits.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\cstdio</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\string.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\DLib_Product_string.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\cpp\new</file>
|
||||
<file>$TOOLKIT_DIR$\inc\cpp\exception</file>
|
||||
<file>$TOOLKIT_DIR$\inc\cpp\xstddef</file>
|
||||
<file>$TOOLKIT_DIR$\inc\cpp\xutility</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\ystdio.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\stddef.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\cstring</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\cwchar</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\ysizet.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\cpp\iosfwd</file>
|
||||
<file>$TOOLKIT_DIR$\inc\cpp\memory</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\cstddef</file>
|
||||
<file>$TOOLKIT_DIR$\inc\c\stdio.h</file>
|
||||
<file>$TOOLKIT_DIR$\inc\cpp\iterator</file>
|
||||
<file>$TOOLKIT_DIR$\inc\cpp\algorithm</file>
|
||||
<file>$TOOLKIT_DIR$\inc\cpp\utility</file>
|
||||
<file>$TOOLKIT_DIR$\inc\cpp\istream</file>
|
||||
</outputs>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\crc16.cpp</name>
|
||||
<name>$PROJ_DIR$\..\..\crc32.cpp</name>
|
||||
<outputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 137</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 147</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 68</file>
|
||||
<name>__cstat</name>
|
||||
<file> 25</file>
|
||||
</tool>
|
||||
</outputs>
|
||||
<inputs>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 73 70 75 72 71 74 144 138</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 70 75 73 144 72 138 71 74</file>
|
||||
<file> 132 146 135 168 154 156 160 144</file>
|
||||
</tool>
|
||||
</inputs>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\crc16_ccitt.cpp</name>
|
||||
<outputs>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 148</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 150</file>
|
||||
</tool>
|
||||
</outputs>
|
||||
<inputs>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 73 70 75 72 71 74 144 138</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 70 75 73 144 72 138 71 74</file>
|
||||
<file> 156 132 154 135 160 144 168 146</file>
|
||||
</tool>
|
||||
</inputs>
|
||||
</file>
|
||||
@ -213,54 +261,26 @@
|
||||
<name>$PROJ_DIR$\..\..\crc16_kermit.cpp</name>
|
||||
<outputs>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 151</file>
|
||||
<name>BICOMP</name>
|
||||
<file> 152</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 67</file>
|
||||
<name>ICCARM</name>
|
||||
<file> 142</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>__cstat</name>
|
||||
<file> 23</file>
|
||||
</tool>
|
||||
</outputs>
|
||||
<inputs>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 73 70 75 72 71 74 144 138</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 70 75 73 144 72 138 71 74</file>
|
||||
<file> 132 146 135 168 154 156 160 144</file>
|
||||
</tool>
|
||||
</inputs>
|
||||
</file>
|
||||
<file>
|
||||
<name>[ROOT_NODE]</name>
|
||||
<outputs>
|
||||
<tool>
|
||||
<name>ILINK</name>
|
||||
<file> 69 141</file>
|
||||
</tool>
|
||||
</outputs>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\crc32.cpp</name>
|
||||
<outputs>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 146</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 78</file>
|
||||
</tool>
|
||||
</outputs>
|
||||
<inputs>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 73 70 75 72 71 74 144 138</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 70 75 73 144 72 138 71 74</file>
|
||||
<file> 156 132 154 135 160 144 168 146</file>
|
||||
</tool>
|
||||
</inputs>
|
||||
</file>
|
||||
@ -268,45 +288,80 @@
|
||||
<name>$PROJ_DIR$\..\..\crc64_ecma.cpp</name>
|
||||
<outputs>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 145</file>
|
||||
<name>BICOMP</name>
|
||||
<file> 163</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 77</file>
|
||||
<name>ICCARM</name>
|
||||
<file> 139</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>__cstat</name>
|
||||
<file> 29</file>
|
||||
</tool>
|
||||
</outputs>
|
||||
<inputs>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 73 70 75 72 71 74 144 138</file>
|
||||
<name>BICOMP</name>
|
||||
<file> 132 146 135 168 154 156 160 144</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 70 75 73 144 72 138 71 74</file>
|
||||
<name>ICCARM</name>
|
||||
<file> 156 132 154 135 160 144 168 146</file>
|
||||
</tool>
|
||||
</inputs>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\crc8_ccitt.cpp</name>
|
||||
<name>$PROJ_DIR$\..\..\crc16.cpp</name>
|
||||
<outputs>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 152</file>
|
||||
<name>BICOMP</name>
|
||||
<file> 159</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 76</file>
|
||||
<name>ICCARM</name>
|
||||
<file> 162</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>__cstat</name>
|
||||
<file> 124</file>
|
||||
</tool>
|
||||
</outputs>
|
||||
<inputs>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 73 70 75 72 71 74 144 138</file>
|
||||
<name>BICOMP</name>
|
||||
<file> 132 146 135 168 154 156 160 144</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 156 132 154 135 160 144 168 146</file>
|
||||
</tool>
|
||||
</inputs>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\crc16_ccitt.cpp</name>
|
||||
<outputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 70 75 73 144 72 138 71 74</file>
|
||||
<file> 167</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 169</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>__cstat</name>
|
||||
<file> 155</file>
|
||||
</tool>
|
||||
</outputs>
|
||||
<inputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 132 146 135 168 154 156 160 144</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 156 132 154 135 160 144 168 146</file>
|
||||
</tool>
|
||||
</inputs>
|
||||
</file>
|
||||
@ -314,45 +369,103 @@
|
||||
<name>$PROJ_DIR$\..\..\error_handler.cpp</name>
|
||||
<outputs>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 139</file>
|
||||
<name>BICOMP</name>
|
||||
<file> 164</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 137</file>
|
||||
<name>ICCARM</name>
|
||||
<file> 172</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>__cstat</name>
|
||||
<file> 151</file>
|
||||
</tool>
|
||||
</outputs>
|
||||
<inputs>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 25 21 31 49</file>
|
||||
<name>BICOMP</name>
|
||||
<file> 73 154 146 132 125 150 56 135 168 46 160 144</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 31 49 21 25</file>
|
||||
<name>ICCARM</name>
|
||||
<file> 46 150 132 154 135 160 144 168 146 73 56 125</file>
|
||||
</tool>
|
||||
</inputs>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\test_compile.cpp</name>
|
||||
<name>$PROJ_DIR$\..\..\crc8_ccitt.cpp</name>
|
||||
<outputs>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 83</file>
|
||||
<name>BICOMP</name>
|
||||
<file> 158</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 84</file>
|
||||
<name>ICCARM</name>
|
||||
<file> 143</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>__cstat</name>
|
||||
<file> 153</file>
|
||||
</tool>
|
||||
</outputs>
|
||||
<inputs>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 2 118 62 115 81 70 75 72 71 74 144 138 79 86 120 91 119 121 100 99 90 122 102 123 124 92 103 80 125 89 88 97 87 126 93 104 127 85 111 142 143 128 129 130 105 98 94 106 82 131 95 116 117 32 96 133 114 134 135 132 136 101 60 49 1 73 57 3 21 51 25 31 0 36 55 48 140 154 5 16 22 23 153 7 6 11 13 12 17 19 33 20 155 63 42 64 61 41</file>
|
||||
<name>BICOMP</name>
|
||||
<file> 132 146 135 168 154 156 160 144</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 156 132 154 135 160 144 168 146</file>
|
||||
</tool>
|
||||
</inputs>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\md5.cpp</name>
|
||||
<outputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 60 72 123 36 70 86 81 3 75 122 21 100 11 101 115 119 102 90 91 153 57 118 5 19 120 82 48 73 64 7 12 63 124 99 94 80 95 96 97 98 22 87 1 0 16 6 13 17 155 61 62 79 144 138 71 74 121 125 89 126 127 128 143 105 106 114 88 116 117 32 51 25 2 92 103 93 104 85 111 142 129 130 131 132 133 134 135 136 49 31 55 140 154 23 33 20 42 41</file>
|
||||
<file> 28</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>__cstat</name>
|
||||
<file> 192</file>
|
||||
</tool>
|
||||
</outputs>
|
||||
<inputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 132 146 135 168 154 156 160 144</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 156 132 154 135 160 144 168 146</file>
|
||||
</tool>
|
||||
</inputs>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\pearson.cpp</name>
|
||||
<outputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 30</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 26</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>__cstat</name>
|
||||
<file> 191</file>
|
||||
</tool>
|
||||
</outputs>
|
||||
<inputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 132 146 135 168 154 156 160 144</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 156 132 154 135 160 144 168 146</file>
|
||||
</tool>
|
||||
</inputs>
|
||||
</file>
|
||||
@ -361,16 +474,56 @@
|
||||
<outputs>
|
||||
<tool>
|
||||
<name>ILINK</name>
|
||||
<file> 141</file>
|
||||
<file> 161</file>
|
||||
</tool>
|
||||
</outputs>
|
||||
<inputs>
|
||||
<tool>
|
||||
<name>ILINK</name>
|
||||
<file> 107 147 148 151 146 145 152 139 83 110 112 113 109 108</file>
|
||||
<file> 145 162 169 142 147 139 143 172 26 157 133 141 149 138 136</file>
|
||||
</tool>
|
||||
</inputs>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\test_compile.cpp</name>
|
||||
<outputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 148</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 157</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>__cstat</name>
|
||||
<file> 27</file>
|
||||
</tool>
|
||||
</outputs>
|
||||
<inputs>
|
||||
<tool>
|
||||
<name>BICOMP</name>
|
||||
<file> 220 215 15 113 86 82 202 132 56 173 100 40 154 218 198 46 125 211 96 38 51 156 217 203 177 207 219 121 107 181 41 35 170 221 209 144 214 222 7 201 212 22 11 200 73 204 185 187 194 19 186 190 54 37 31 48 102 174 216 199 197 160 168 208 213 210 178 3 13 1 20 10 2 114 150 66 196 44 206 135 146 205 179 180 176 9 14 21 6 4 16 17 12 8 18 5 0 119 59 87 78 193 195</file>
|
||||
</tool>
|
||||
<tool>
|
||||
<name>ICCARM</name>
|
||||
<file> 187 220 216 201 199 132 154 135 160 144 168 146 197 214 206 207 208 217 211 209 198 202 221 215 203 218 210 212 204 205 213 200 219 222 179 180 176 177 178 3 14 9 21 6 13 15 4 7 16 17 22 20 10 2 11 8 1 18 5 12 0 19 156 173 125 186 121 181 73 114 46 150 56 190 96 86 66 185 119 113 38 54 41 37 40 31 35 48 51 59 196 102 170 87 194 174 78 82 44 193 107 100 195</file>
|
||||
</tool>
|
||||
</inputs>
|
||||
</file>
|
||||
<file>
|
||||
<name>[ROOT_NODE]</name>
|
||||
<outputs>
|
||||
<tool>
|
||||
<name>ILINK</name>
|
||||
<file> 134 161</file>
|
||||
</tool>
|
||||
</outputs>
|
||||
</file>
|
||||
<forcedrebuild>
|
||||
<name>$PROJ_DIR$\..\..\md5.cpp</name>
|
||||
<tool>ICCARM</tool>
|
||||
</forcedrebuild>
|
||||
</configuration>
|
||||
<configuration>
|
||||
<name>Release</name>
|
||||
|
||||
518
test/iar/etl.ewd
518
test/iar/etl.ewd
@ -12,7 +12,7 @@
|
||||
<name>C-SPY</name>
|
||||
<archiveVersion>2</archiveVersion>
|
||||
<data>
|
||||
<version>26</version>
|
||||
<version>27</version>
|
||||
<wantNonLocal>1</wantNonLocal>
|
||||
<debug>1</debug>
|
||||
<option>
|
||||
@ -89,7 +89,7 @@
|
||||
</option>
|
||||
<option>
|
||||
<name>OCLastSavedByProductVersion</name>
|
||||
<state>7.30.3.8061</state>
|
||||
<state>7.50.1.10270</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>OCDownloadAttachToProgram</name>
|
||||
@ -207,6 +207,10 @@
|
||||
<name>OCMulticoreSlaveConfiguration</name>
|
||||
<state></state>
|
||||
</option>
|
||||
<option>
|
||||
<name>OCDownloadExtraImage</name>
|
||||
<state>1</state>
|
||||
</option>
|
||||
</data>
|
||||
</settings>
|
||||
<settings>
|
||||
@ -520,7 +524,7 @@
|
||||
<name>IJET_ID</name>
|
||||
<archiveVersion>2</archiveVersion>
|
||||
<data>
|
||||
<version>5</version>
|
||||
<version>6</version>
|
||||
<wantNonLocal>1</wantNonLocal>
|
||||
<debug>1</debug>
|
||||
<option>
|
||||
@ -732,6 +736,10 @@
|
||||
<version>0</version>
|
||||
<state>2</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>FlashBoardPathSlave</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
</data>
|
||||
</settings>
|
||||
<settings>
|
||||
@ -1060,7 +1068,7 @@
|
||||
<name>PEMICRO_ID</name>
|
||||
<archiveVersion>2</archiveVersion>
|
||||
<data>
|
||||
<version>1</version>
|
||||
<version>2</version>
|
||||
<wantNonLocal>1</wantNonLocal>
|
||||
<debug>1</debug>
|
||||
<option>
|
||||
@ -1071,19 +1079,6 @@
|
||||
<name>OCPEMicroAttachSlave</name>
|
||||
<state>1</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCPEMicroInterfaceList</name>
|
||||
<version>0</version>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCPEMicroResetDelay</name>
|
||||
<state></state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCPEMicroJtagSpeed</name>
|
||||
<state>#UNINITIALIZED#</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCJPEMicroShowSettings</name>
|
||||
<state>0</state>
|
||||
@ -1096,36 +1091,6 @@
|
||||
<name>LogFile</name>
|
||||
<state>$PROJ_DIR$\cspycomm.log</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCPEMicroUSBDevice</name>
|
||||
<version>0</version>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCPEMicroSerialPort</name>
|
||||
<version>0</version>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCJPEMicroTCPIPAutoScanNetwork</name>
|
||||
<state>1</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCPEMicroTCPIP</name>
|
||||
<state>10.0.0.1</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCPEMicroCommCmdLineProducer</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCSTLinkInterfaceRadio</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCSTLinkInterfaceCmdLine</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
</data>
|
||||
</settings>
|
||||
<settings>
|
||||
@ -1189,7 +1154,7 @@
|
||||
<name>STLINK_ID</name>
|
||||
<archiveVersion>2</archiveVersion>
|
||||
<data>
|
||||
<version>2</version>
|
||||
<version>3</version>
|
||||
<wantNonLocal>1</wantNonLocal>
|
||||
<debug>1</debug>
|
||||
<option>
|
||||
@ -1221,6 +1186,71 @@
|
||||
<name>CCSwoClockEdit</name>
|
||||
<state>2000</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>DoLogfile</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>LogFile</name>
|
||||
<state>$PROJ_DIR$\cspycomm.log</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCSTLinkDoUpdateBreakpoints</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCSTLinkUpdateBreakpoints</name>
|
||||
<state>_call_main</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCSTLinkCatchCORERESET</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCSTLinkCatchMMERR</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCSTLinkCatchNOCPERR</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCSTLinkCatchCHRERR</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCSTLinkCatchSTATERR</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCSTLinkCatchBUSERR</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCSTLinkCatchINTERR</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCSTLinkCatchHARDERR</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCSTLinkCatchDummy</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCSTLinkUsbSerialNo</name>
|
||||
<state></state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCSTLinkUsbSerialNoSelect</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCSTLinkJtagSpeedList</name>
|
||||
<version>0</version>
|
||||
<state>0</state>
|
||||
</option>
|
||||
</data>
|
||||
</settings>
|
||||
<settings>
|
||||
@ -1252,7 +1282,7 @@
|
||||
<name>XDS100_ID</name>
|
||||
<archiveVersion>2</archiveVersion>
|
||||
<data>
|
||||
<version>2</version>
|
||||
<version>4</version>
|
||||
<wantNonLocal>1</wantNonLocal>
|
||||
<debug>1</debug>
|
||||
<option>
|
||||
@ -1271,11 +1301,6 @@
|
||||
<name>TIPackage</name>
|
||||
<state></state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCXds100InterfaceList</name>
|
||||
<version>2</version>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>BoardFile</name>
|
||||
<state></state>
|
||||
@ -1288,6 +1313,129 @@
|
||||
<name>LogFile</name>
|
||||
<state>$PROJ_DIR$\cspycomm.log</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCXds100BreakpointRadio</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCXds100DoUpdateBreakpoints</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCXds100UpdateBreakpoints</name>
|
||||
<state>_call_main</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCXds100CatchReset</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCXds100CatchUndef</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCXds100CatchSWI</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCXds100CatchData</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCXds100CatchPrefetch</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCXds100CatchIRQ</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCXds100CatchFIQ</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCXds100CatchCORERESET</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCXds100CatchMMERR</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCXds100CatchNOCPERR</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCXds100CatchCHRERR</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCXds100CatchSTATERR</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCXds100CatchBUSERR</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCXds100CatchINTERR</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCXds100CatchHARDERR</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCXds100CatchDummy</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCXds100CpuClockEdit</name>
|
||||
<state>72.0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCXds100SwoClockAuto</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCXds100SwoClockEdit</name>
|
||||
<state>1000</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCXds100HWResetDelay</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCXds100ResetList</name>
|
||||
<version>0</version>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCXds100UsbSerialNo</name>
|
||||
<state></state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCXds100UsbSerialNoSelect</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCXds100JtagSpeedList</name>
|
||||
<version>0</version>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCXds100InterfaceRadio</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCXds100InterfaceCmdLine</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCXds100ProbeList</name>
|
||||
<version>0</version>
|
||||
<state>0</state>
|
||||
</option>
|
||||
</data>
|
||||
</settings>
|
||||
<debuggerPlugins>
|
||||
@ -1295,6 +1443,10 @@
|
||||
<file>$TOOLKIT_DIR$\plugins\middleware\HCCWare\HCCWare.ewplugin</file>
|
||||
<loadFlag>0</loadFlag>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<file>$TOOLKIT_DIR$\plugins\middleware\PercepioTraceExporter\PercepioTraceExportPlugin.ewplugin</file>
|
||||
<loadFlag>0</loadFlag>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<file>$TOOLKIT_DIR$\plugins\rtos\AVIX\AVIX.ENU.ewplugin</file>
|
||||
<loadFlag>0</loadFlag>
|
||||
@ -1375,7 +1527,7 @@
|
||||
<name>C-SPY</name>
|
||||
<archiveVersion>2</archiveVersion>
|
||||
<data>
|
||||
<version>26</version>
|
||||
<version>27</version>
|
||||
<wantNonLocal>1</wantNonLocal>
|
||||
<debug>0</debug>
|
||||
<option>
|
||||
@ -1570,6 +1722,10 @@
|
||||
<name>OCMulticoreSlaveConfiguration</name>
|
||||
<state></state>
|
||||
</option>
|
||||
<option>
|
||||
<name>OCDownloadExtraImage</name>
|
||||
<state>1</state>
|
||||
</option>
|
||||
</data>
|
||||
</settings>
|
||||
<settings>
|
||||
@ -1883,7 +2039,7 @@
|
||||
<name>IJET_ID</name>
|
||||
<archiveVersion>2</archiveVersion>
|
||||
<data>
|
||||
<version>5</version>
|
||||
<version>6</version>
|
||||
<wantNonLocal>1</wantNonLocal>
|
||||
<debug>0</debug>
|
||||
<option>
|
||||
@ -2095,6 +2251,10 @@
|
||||
<version>0</version>
|
||||
<state>2</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>FlashBoardPathSlave</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
</data>
|
||||
</settings>
|
||||
<settings>
|
||||
@ -2423,7 +2583,7 @@
|
||||
<name>PEMICRO_ID</name>
|
||||
<archiveVersion>2</archiveVersion>
|
||||
<data>
|
||||
<version>1</version>
|
||||
<version>2</version>
|
||||
<wantNonLocal>1</wantNonLocal>
|
||||
<debug>0</debug>
|
||||
<option>
|
||||
@ -2434,19 +2594,6 @@
|
||||
<name>OCPEMicroAttachSlave</name>
|
||||
<state>1</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCPEMicroInterfaceList</name>
|
||||
<version>0</version>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCPEMicroResetDelay</name>
|
||||
<state></state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCPEMicroJtagSpeed</name>
|
||||
<state>#UNINITIALIZED#</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCJPEMicroShowSettings</name>
|
||||
<state>0</state>
|
||||
@ -2459,36 +2606,6 @@
|
||||
<name>LogFile</name>
|
||||
<state>$PROJ_DIR$\cspycomm.log</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCPEMicroUSBDevice</name>
|
||||
<version>0</version>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCPEMicroSerialPort</name>
|
||||
<version>0</version>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCJPEMicroTCPIPAutoScanNetwork</name>
|
||||
<state>1</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCPEMicroTCPIP</name>
|
||||
<state>10.0.0.1</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCPEMicroCommCmdLineProducer</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCSTLinkInterfaceRadio</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCSTLinkInterfaceCmdLine</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
</data>
|
||||
</settings>
|
||||
<settings>
|
||||
@ -2552,7 +2669,7 @@
|
||||
<name>STLINK_ID</name>
|
||||
<archiveVersion>2</archiveVersion>
|
||||
<data>
|
||||
<version>2</version>
|
||||
<version>3</version>
|
||||
<wantNonLocal>1</wantNonLocal>
|
||||
<debug>0</debug>
|
||||
<option>
|
||||
@ -2584,6 +2701,71 @@
|
||||
<name>CCSwoClockEdit</name>
|
||||
<state>2000</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>DoLogfile</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>LogFile</name>
|
||||
<state>$PROJ_DIR$\cspycomm.log</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCSTLinkDoUpdateBreakpoints</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCSTLinkUpdateBreakpoints</name>
|
||||
<state>_call_main</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCSTLinkCatchCORERESET</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCSTLinkCatchMMERR</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCSTLinkCatchNOCPERR</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCSTLinkCatchCHRERR</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCSTLinkCatchSTATERR</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCSTLinkCatchBUSERR</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCSTLinkCatchINTERR</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCSTLinkCatchHARDERR</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCSTLinkCatchDummy</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCSTLinkUsbSerialNo</name>
|
||||
<state></state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCSTLinkUsbSerialNoSelect</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCSTLinkJtagSpeedList</name>
|
||||
<version>0</version>
|
||||
<state>0</state>
|
||||
</option>
|
||||
</data>
|
||||
</settings>
|
||||
<settings>
|
||||
@ -2615,7 +2797,7 @@
|
||||
<name>XDS100_ID</name>
|
||||
<archiveVersion>2</archiveVersion>
|
||||
<data>
|
||||
<version>2</version>
|
||||
<version>4</version>
|
||||
<wantNonLocal>1</wantNonLocal>
|
||||
<debug>0</debug>
|
||||
<option>
|
||||
@ -2634,11 +2816,6 @@
|
||||
<name>TIPackage</name>
|
||||
<state></state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCXds100InterfaceList</name>
|
||||
<version>2</version>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>BoardFile</name>
|
||||
<state></state>
|
||||
@ -2651,6 +2828,129 @@
|
||||
<name>LogFile</name>
|
||||
<state>$PROJ_DIR$\cspycomm.log</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCXds100BreakpointRadio</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCXds100DoUpdateBreakpoints</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCXds100UpdateBreakpoints</name>
|
||||
<state>_call_main</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCXds100CatchReset</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCXds100CatchUndef</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCXds100CatchSWI</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCXds100CatchData</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCXds100CatchPrefetch</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCXds100CatchIRQ</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCXds100CatchFIQ</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCXds100CatchCORERESET</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCXds100CatchMMERR</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCXds100CatchNOCPERR</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCXds100CatchCHRERR</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCXds100CatchSTATERR</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCXds100CatchBUSERR</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCXds100CatchINTERR</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCXds100CatchHARDERR</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCXds100CatchDummy</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCXds100CpuClockEdit</name>
|
||||
<state>72.0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCXds100SwoClockAuto</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCXds100SwoClockEdit</name>
|
||||
<state>1000</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCXds100HWResetDelay</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCXds100ResetList</name>
|
||||
<version>0</version>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCXds100UsbSerialNo</name>
|
||||
<state></state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCXds100UsbSerialNoSelect</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCXds100JtagSpeedList</name>
|
||||
<version>0</version>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCXds100InterfaceRadio</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCXds100InterfaceCmdLine</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCXds100ProbeList</name>
|
||||
<version>0</version>
|
||||
<state>0</state>
|
||||
</option>
|
||||
</data>
|
||||
</settings>
|
||||
<debuggerPlugins>
|
||||
@ -2658,6 +2958,10 @@
|
||||
<file>$TOOLKIT_DIR$\plugins\middleware\HCCWare\HCCWare.ewplugin</file>
|
||||
<loadFlag>0</loadFlag>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<file>$TOOLKIT_DIR$\plugins\middleware\PercepioTraceExporter\PercepioTraceExportPlugin.ewplugin</file>
|
||||
<loadFlag>0</loadFlag>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<file>$TOOLKIT_DIR$\plugins\rtos\AVIX\AVIX.ENU.ewplugin</file>
|
||||
<loadFlag>0</loadFlag>
|
||||
|
||||
252
test/iar/etl.ewp
252
test/iar/etl.ewp
@ -12,7 +12,7 @@
|
||||
<name>General</name>
|
||||
<archiveVersion>3</archiveVersion>
|
||||
<data>
|
||||
<version>22</version>
|
||||
<version>24</version>
|
||||
<wantNonLocal>1</wantNonLocal>
|
||||
<debug>1</debug>
|
||||
<option>
|
||||
@ -27,11 +27,6 @@
|
||||
<name>ListPath</name>
|
||||
<state>Debug\List</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>Variant</name>
|
||||
<version>21</version>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>GEndianMode</name>
|
||||
<state>0</state>
|
||||
@ -58,11 +53,6 @@
|
||||
<name>GOutputBinary</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>FPU</name>
|
||||
<version>3</version>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>OGCoreOrChip</name>
|
||||
<state>0</state>
|
||||
@ -87,7 +77,7 @@
|
||||
</option>
|
||||
<option>
|
||||
<name>OGLastSavedByProductVersion</name>
|
||||
<state>7.30.3.8061</state>
|
||||
<state>7.50.1.10270</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>GeneralEnableMisra</name>
|
||||
@ -135,14 +125,9 @@
|
||||
<name>RTConfigPath2</name>
|
||||
<state>$TOOLKIT_DIR$\INC\c\DLib_Config_Normal.h</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>GFPUCoreSlave</name>
|
||||
<version>21</version>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>GBECoreSlave</name>
|
||||
<version>21</version>
|
||||
<version>22</version>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
@ -157,6 +142,34 @@
|
||||
<name>GRuntimeLibThreads</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CoreVariant</name>
|
||||
<version>22</version>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>GFPUDeviceSlave</name>
|
||||
<state>default None</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>FPU2</name>
|
||||
<version>0</version>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>NrRegs</name>
|
||||
<version>0</version>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>NEON</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>GFPUCoreSlave2</name>
|
||||
<version>22</version>
|
||||
<state>0</state>
|
||||
</option>
|
||||
</data>
|
||||
</settings>
|
||||
<settings>
|
||||
@ -302,7 +315,7 @@
|
||||
</option>
|
||||
<option>
|
||||
<name>CCIncludePath2</name>
|
||||
<state>U:\Users\John\Documents\Programming\GitHub\etl</state>
|
||||
<state>D:\Users\John\Documents\Programming\GitHub\etl</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCStdIncCheck</name>
|
||||
@ -585,7 +598,7 @@
|
||||
<debug>1</debug>
|
||||
<option>
|
||||
<name>OOCOutputFormat</name>
|
||||
<version>2</version>
|
||||
<version>3</version>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
@ -955,7 +968,7 @@
|
||||
<name>General</name>
|
||||
<archiveVersion>3</archiveVersion>
|
||||
<data>
|
||||
<version>22</version>
|
||||
<version>24</version>
|
||||
<wantNonLocal>1</wantNonLocal>
|
||||
<debug>0</debug>
|
||||
<option>
|
||||
@ -970,11 +983,6 @@
|
||||
<name>ListPath</name>
|
||||
<state>Release\List</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>Variant</name>
|
||||
<version>21</version>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>GEndianMode</name>
|
||||
<state>0</state>
|
||||
@ -1001,11 +1009,6 @@
|
||||
<name>GOutputBinary</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>FPU</name>
|
||||
<version>3</version>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>OGCoreOrChip</name>
|
||||
<state>0</state>
|
||||
@ -1030,7 +1033,7 @@
|
||||
</option>
|
||||
<option>
|
||||
<name>OGLastSavedByProductVersion</name>
|
||||
<state>6.30.1.53141</state>
|
||||
<state>7.50.1.10270</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>GeneralEnableMisra</name>
|
||||
@ -1078,14 +1081,9 @@
|
||||
<name>RTConfigPath2</name>
|
||||
<state>$TOOLKIT_DIR$\INC\c\DLib_Config_Normal.h</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>GFPUCoreSlave</name>
|
||||
<version>21</version>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>GBECoreSlave</name>
|
||||
<version>21</version>
|
||||
<version>22</version>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
@ -1100,6 +1098,34 @@
|
||||
<name>GRuntimeLibThreads</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CoreVariant</name>
|
||||
<version>22</version>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>GFPUDeviceSlave</name>
|
||||
<state>default None</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>FPU2</name>
|
||||
<version>0</version>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>NrRegs</name>
|
||||
<version>0</version>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>NEON</name>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>GFPUCoreSlave2</name>
|
||||
<version>22</version>
|
||||
<state>0</state>
|
||||
</option>
|
||||
</data>
|
||||
</settings>
|
||||
<settings>
|
||||
@ -1527,7 +1553,7 @@
|
||||
<debug>0</debug>
|
||||
<option>
|
||||
<name>OOCOutputFormat</name>
|
||||
<version>2</version>
|
||||
<version>3</version>
|
||||
<state>0</state>
|
||||
</option>
|
||||
<option>
|
||||
@ -1898,9 +1924,27 @@
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\array.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\basic_intrusive_forward_list.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\basic_intrusive_forward_list_node.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\binary.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\bitset.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\bloom_filter.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\bsd_checksum.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\checksum.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\container.h</name>
|
||||
</file>
|
||||
@ -1964,6 +2008,9 @@
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\error_handler.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\etlhash.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\exception.h</name>
|
||||
</file>
|
||||
@ -1973,6 +2020,24 @@
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\fibonacci.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\fixed_iterator.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\flat_map.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\flat_multimap.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\flat_multiset.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\flat_set.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\fnv_1.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\forward_list.h</name>
|
||||
</file>
|
||||
@ -1985,36 +2050,96 @@
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\functional.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\hash.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\ibitset.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\icache.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\ideque.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\iflat_map.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\iflat_multimap.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\iflat_multiset.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\iflat_set.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\iforward_list.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\ihash.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\ilist.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\ilru_cache.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\imap.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\imru_cache.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\imultimap.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\imultiset.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\instance_count.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\integral_limits.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\intrusive_forward_list.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\intrusive_forward_list_node.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\io_port.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\ipool.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\ipriority_queue.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\iqueue.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\irr_cache.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\iset.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\istack.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\iunordered_map.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\ivector.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\jenkins.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\largest.h</name>
|
||||
</file>
|
||||
@ -2027,12 +2152,33 @@
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\log.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\lru_cache.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\map.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\map_base.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\mru_cache.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\multi_array.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\multi_loop.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\multimap.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\multiset.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\murmur3.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\nullptr.h</name>
|
||||
</file>
|
||||
@ -2042,21 +2188,45 @@
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\observer.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\optional.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\parameter_type.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\pearson.cpp</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\pearson.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\pool.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\power.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\priority_queue.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\queue.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\queue_base.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\radix.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\reverse_pointer.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\rr_cache.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\set.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\smallest.h</name>
|
||||
</file>
|
||||
@ -2072,6 +2242,9 @@
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\type_traits.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\unordered_map.h</name>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\..\..\variant.h</name>
|
||||
</file>
|
||||
@ -2234,6 +2407,7 @@
|
||||
<option>
|
||||
<name>CCIncludePath2</name>
|
||||
<state>U:\Users\John\Documents\Programming\GitHub\etl</state>
|
||||
<state>../</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCStdIncCheck</name>
|
||||
|
||||
2071
test/iar/etl.ewt
2071
test/iar/etl.ewt
File diff suppressed because it is too large
Load Diff
@ -19,6 +19,22 @@
|
||||
@REM
|
||||
|
||||
|
||||
"C:\Program Files (x86)\IAR Systems\Embedded Workbench 7.0\common\bin\cspybat" "C:\Program Files (x86)\IAR Systems\Embedded Workbench 7.0\arm\bin\armproc.dll" "C:\Program Files (x86)\IAR Systems\Embedded Workbench 7.0\arm\bin\armsim2.dll" %1 --plugin "C:\Program Files (x86)\IAR Systems\Embedded Workbench 7.0\arm\bin\armbat.dll" --backend -B "--endian=little" "--cpu=ARM7TDMI" "--fpu=None" "--semihosting" "--multicore_nr_of_cores=1"
|
||||
@echo off
|
||||
|
||||
if not "%~1" == "" goto debugFile
|
||||
|
||||
@echo on
|
||||
|
||||
"C:\Program Files (x86)\IAR Systems\Embedded Workbench 7.3\common\bin\cspybat" -f "D:\Users\John\Documents\Programming\GitHub\etl\test\IAR\settings\etl.Debug.general.xcl" --backend -f "D:\Users\John\Documents\Programming\GitHub\etl\test\IAR\settings\etl.Debug.driver.xcl"
|
||||
|
||||
@echo off
|
||||
goto end
|
||||
|
||||
:debugFile
|
||||
|
||||
@echo on
|
||||
|
||||
"C:\Program Files (x86)\IAR Systems\Embedded Workbench 7.3\common\bin\cspybat" -f "D:\Users\John\Documents\Programming\GitHub\etl\test\IAR\settings\etl.Debug.general.xcl" "--debug_file=%~1" --backend -f "D:\Users\John\Documents\Programming\GitHub\etl\test\IAR\settings\etl.Debug.driver.xcl"
|
||||
|
||||
@echo off
|
||||
:end
|
||||
@ -10,16 +10,16 @@ LimitSize=0
|
||||
ByteLimit=50
|
||||
[InterruptLog]
|
||||
LogEnabled=0
|
||||
SumEnabled=0
|
||||
GraphEnabled=0
|
||||
ShowTimeLog=1
|
||||
SumEnabled=0
|
||||
ShowTimeSum=1
|
||||
SumSortOrder=0
|
||||
[DataLog]
|
||||
LogEnabled=0
|
||||
SumEnabled=0
|
||||
GraphEnabled=0
|
||||
ShowTimeLog=1
|
||||
SumEnabled=0
|
||||
ShowTimeSum=1
|
||||
[Disassemble mode]
|
||||
mode=0
|
||||
|
||||
@ -12,7 +12,7 @@
|
||||
|
||||
|
||||
|
||||
<Column0>259</Column0><Column1>27</Column1><Column2>27</Column2><Column3>27</Column3></ColumnWidths>
|
||||
<Column0>242</Column0><Column1>27</Column1><Column2>27</Column2><Column3>27</Column3></ColumnWidths>
|
||||
</Workspace>
|
||||
<Build>
|
||||
|
||||
@ -24,7 +24,7 @@
|
||||
<Windows>
|
||||
|
||||
|
||||
<Wnd1>
|
||||
<Wnd2>
|
||||
<Tabs>
|
||||
<Tab>
|
||||
<Identity>TabID-10727-29778</Identity>
|
||||
@ -32,11 +32,11 @@
|
||||
<Factory>Workspace</Factory>
|
||||
<Session>
|
||||
|
||||
<NodeDict><ExpandedNode>etl</ExpandedNode><ExpandedNode>etl/Output</ExpandedNode><ExpandedNode>etl/Test</ExpandedNode><ExpandedNode>etl/main.cpp</ExpandedNode></NodeDict></Session>
|
||||
<NodeDict><ExpandedNode>etl</ExpandedNode><ExpandedNode>etl/ETL</ExpandedNode><ExpandedNode>etl/Output</ExpandedNode><ExpandedNode>etl/Test</ExpandedNode><ExpandedNode>etl/main.cpp</ExpandedNode></NodeDict></Session>
|
||||
</Tab>
|
||||
</Tabs>
|
||||
|
||||
<SelectedTab>0</SelectedTab></Wnd1><Wnd3>
|
||||
<SelectedTab>0</SelectedTab></Wnd2><Wnd4>
|
||||
<Tabs>
|
||||
<Tab>
|
||||
<Identity>TabID-15390-31123</Identity>
|
||||
@ -46,20 +46,20 @@
|
||||
</Tab>
|
||||
</Tabs>
|
||||
|
||||
<SelectedTab>0</SelectedTab></Wnd3></Windows>
|
||||
<SelectedTab>0</SelectedTab></Wnd4></Windows>
|
||||
<Editor>
|
||||
|
||||
|
||||
|
||||
|
||||
<Pane><Tab><Factory>TextEditor</Factory><Filename>$WS_DIR$\..\test_compile.cpp</Filename><XPos>0</XPos><YPos>0</YPos><SelStart>0</SelStart><SelEnd>0</SelEnd><XPos2>0</XPos2><YPos2>0</YPos2><SelStart2>516</SelStart2><SelEnd2>516</SelEnd2></Tab><ActiveTab>0</ActiveTab><Tab><Factory>TextEditor</Factory><Filename>$WS_DIR$\..\..\variant.h</Filename><XPos>0</XPos><YPos>0</YPos><SelStart>0</SelStart><SelEnd>0</SelEnd><XPos2>0</XPos2><YPos2>753</YPos2><SelStart2>31086</SelStart2><SelEnd2>31086</SelEnd2></Tab></Pane><ActivePane>0</ActivePane><Sizes><Pane><X>1000000</X><Y>1000000</Y></Pane></Sizes><SplitMode>1</SplitMode></Editor>
|
||||
<Pane><Tab><Factory>TextEditor</Factory><Filename>$WS_DIR$\..\test_compile.cpp</Filename><XPos>0</XPos><YPos>0</YPos><SelStart>0</SelStart><SelEnd>0</SelEnd><XPos2>0</XPos2><YPos2>0</YPos2><SelStart2>10</SelStart2><SelEnd2>10</SelEnd2></Tab><ActiveTab>0</ActiveTab><Tab><Factory>TextEditor</Factory><Filename>$WS_DIR$\..\..\variant.h</Filename><XPos>0</XPos><YPos>0</YPos><SelStart>0</SelStart><SelEnd>0</SelEnd><XPos2>0</XPos2><YPos2>753</YPos2><SelStart2>31086</SelStart2><SelEnd2>31086</SelEnd2></Tab><Tab><Factory>TextEditor</Factory><Filename>$WS_DIR$\..\..\error_handler.h</Filename><XPos>0</XPos><YPos>0</YPos><SelStart>0</SelStart><SelEnd>0</SelEnd><XPos2>0</XPos2><YPos2>63</YPos2><SelStart2>4743</SelStart2><SelEnd2>4743</SelEnd2></Tab><Tab><Factory>TextEditor</Factory><Filename>$WS_DIR$\..\..\md5.cpp</Filename><XPos>0</XPos><YPos>0</YPos><SelStart>0</SelStart><SelEnd>0</SelEnd><XPos2>0</XPos2><YPos2>10</YPos2><SelStart2>3021</SelStart2><SelEnd2>3021</SelEnd2></Tab></Pane><ActivePane>0</ActivePane><Sizes><Pane><X>1000000</X><Y>1000000</Y></Pane></Sizes><SplitMode>1</SplitMode></Editor>
|
||||
<Positions>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<Top><Row0><Sizes><Toolbar-00DE39B0><key>iaridepm.enu1</key></Toolbar-00DE39B0></Sizes></Row0></Top><Left><Row0><Sizes><Wnd1><Rect><Top>-2</Top><Left>-2</Left><Bottom>953</Bottom><Right>333</Right><x>-2</x><y>-2</y><xscreen>200</xscreen><yscreen>200</yscreen><sizeHorzCX>104167</sizeHorzCX><sizeHorzCY>200401</sizeHorzCY><sizeVertCX>174479</sizeVertCX><sizeVertCY>956914</sizeVertCY></Rect></Wnd1></Sizes></Row0></Left><Right><Row0><Sizes/></Row0></Right><Bottom><Row0><Sizes/></Row0></Bottom><Float><Sizes><Wnd3><Rect><Top>0</Top><Left>0</Left><Bottom>0</Bottom><Right>0</Right><x>-2</x><y>-2</y><FloatX>1938</FloatX><FloatY>25</FloatY><FloatWidth>1240</FloatWidth><FloatHeight>968</FloatHeight><xscreen>1924</xscreen><yscreen>200</yscreen><sizeHorzCX>1002083</sizeHorzCX><sizeHorzCY>200401</sizeHorzCY><sizeVertCX>104167</sizeVertCX><sizeVertCY>200401</sizeVertCY></Rect></Wnd3></Sizes></Float></Positions>
|
||||
<Top><Row0><Sizes><Toolbar-06653EF8><key>iaridepm.enu1</key></Toolbar-06653EF8></Sizes></Row0></Top><Left><Row0><Sizes><Wnd2><Rect><Top>-2</Top><Left>-2</Left><Bottom>952</Bottom><Right>333</Right><x>-2</x><y>-2</y><xscreen>200</xscreen><yscreen>200</yscreen><sizeHorzCX>104167</sizeHorzCX><sizeHorzCY>200602</sizeHorzCY><sizeVertCX>174479</sizeVertCX><sizeVertCY>956871</sizeVertCY></Rect></Wnd2></Sizes></Row0></Left><Right><Row0><Sizes/></Row0></Right><Bottom><Row0><Sizes/></Row0></Bottom><Float><Sizes><Wnd4><Rect><Top>0</Top><Left>0</Left><Bottom>-1432619621</Bottom><Right>106902488</Right><x>-2</x><y>-2</y><FloatX>1938</FloatX><FloatY>25</FloatY><FloatWidth>1240</FloatWidth><FloatHeight>968</FloatHeight><xscreen>1924</xscreen><yscreen>200</yscreen><sizeHorzCX>1002083</sizeHorzCX><sizeHorzCY>200602</sizeHorzCY><sizeVertCX>104167</sizeVertCX><sizeVertCY>200602</sizeVertCY></Rect></Wnd4></Sizes></Float></Positions>
|
||||
</Desktop>
|
||||
</Workspace>
|
||||
|
||||
|
||||
@ -1,2 +1,2 @@
|
||||
[MainWindow]
|
||||
WindowPlacement=_ 202 91 1642 851 3
|
||||
WindowPlacement=_ 208 208 1648 967 3
|
||||
|
||||
@ -42,6 +42,24 @@ SOFTWARE.
|
||||
|
||||
namespace
|
||||
{
|
||||
//*************************************************************************
|
||||
template <typename T1, typename T2>
|
||||
bool Check_Equal(T1 begin1, T1 end1, T2 begin2)
|
||||
{
|
||||
while (begin1 != end1)
|
||||
{
|
||||
if ((begin1->first != begin2->first) || (begin1->second != begin2->second))
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
++begin1;
|
||||
++begin2;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
SUITE(test_flat_map)
|
||||
{
|
||||
static const size_t SIZE = 10;
|
||||
@ -327,6 +345,38 @@ namespace
|
||||
CHECK(isEqual);
|
||||
}
|
||||
|
||||
//*************************************************************************
|
||||
TEST_FIXTURE(SetupFixture, test_insert_value_multiple)
|
||||
{
|
||||
Compare_DataNDC compare_data;
|
||||
DataNDC data;
|
||||
|
||||
data.insert(std::make_pair(0, N0));
|
||||
compare_data.insert(std::make_pair(0, N0));
|
||||
|
||||
data.insert(std::make_pair(1, N1));
|
||||
compare_data.insert(std::make_pair(1, N1));
|
||||
|
||||
data.insert(std::make_pair(2, N2));
|
||||
compare_data.insert(std::make_pair(2, N2));
|
||||
|
||||
// Do it again.
|
||||
data.insert(std::make_pair(0, N0));
|
||||
compare_data.insert(std::make_pair(0, N0));
|
||||
|
||||
data.insert(std::make_pair(1, N1));
|
||||
compare_data.insert(std::make_pair(1, N1));
|
||||
|
||||
data.insert(std::make_pair(2, N2));
|
||||
compare_data.insert(std::make_pair(2, N2));
|
||||
|
||||
CHECK_EQUAL(compare_data.size(), data.size());
|
||||
|
||||
bool isEqual = Check_Equal(data.begin(),
|
||||
data.end(),
|
||||
compare_data.begin());
|
||||
}
|
||||
|
||||
//*************************************************************************
|
||||
TEST_FIXTURE(SetupFixture, test_insert_value_excess)
|
||||
{
|
||||
|
||||
@ -280,6 +280,40 @@ namespace
|
||||
CHECK(isEqual);
|
||||
}
|
||||
|
||||
//*************************************************************************
|
||||
TEST_FIXTURE(SetupFixture, test_insert_value_multiple)
|
||||
{
|
||||
Compare_DataNDC compare_data;
|
||||
DataNDC data;
|
||||
|
||||
data.insert(std::make_pair(0, N0));
|
||||
compare_data.insert(std::make_pair(0, N0));
|
||||
|
||||
data.insert(std::make_pair(1, N1));
|
||||
compare_data.insert(std::make_pair(1, N1));
|
||||
|
||||
data.insert(std::make_pair(2, N2));
|
||||
compare_data.insert(std::make_pair(2, N2));
|
||||
|
||||
// Do it again.
|
||||
data.insert(std::make_pair(0, N0));
|
||||
compare_data.insert(std::make_pair(0, N0));
|
||||
|
||||
data.insert(std::make_pair(1, N1));
|
||||
compare_data.insert(std::make_pair(1, N1));
|
||||
|
||||
data.insert(std::make_pair(2, N2));
|
||||
compare_data.insert(std::make_pair(2, N2));
|
||||
|
||||
CHECK_EQUAL(compare_data.size(), data.size());
|
||||
|
||||
bool isEqual = Check_Equal(data.begin(),
|
||||
data.end(),
|
||||
compare_data.begin());
|
||||
|
||||
CHECK(isEqual);
|
||||
}
|
||||
|
||||
//*************************************************************************
|
||||
TEST_FIXTURE(SetupFixture, test_insert_value_excess)
|
||||
{
|
||||
|
||||
@ -254,6 +254,40 @@ namespace
|
||||
CHECK(isEqual);
|
||||
}
|
||||
|
||||
//*************************************************************************
|
||||
TEST_FIXTURE(SetupFixture, test_insert_value_multiple)
|
||||
{
|
||||
Compare_DataNDC compare_data;
|
||||
DataNDC data;
|
||||
|
||||
data.insert(N0);
|
||||
compare_data.insert(N0);
|
||||
|
||||
data.insert(N1);
|
||||
compare_data.insert(N1);
|
||||
|
||||
data.insert(N2);
|
||||
compare_data.insert(N2);
|
||||
|
||||
// Do it again.
|
||||
data.insert(N0);
|
||||
compare_data.insert(N0);
|
||||
|
||||
data.insert(N1);
|
||||
compare_data.insert(N1);
|
||||
|
||||
data.insert(N2);
|
||||
compare_data.insert(N2);
|
||||
|
||||
CHECK_EQUAL(compare_data.size(), data.size());
|
||||
|
||||
bool isEqual = std::equal(data.begin(),
|
||||
data.end(),
|
||||
compare_data.begin());
|
||||
|
||||
CHECK(isEqual);
|
||||
}
|
||||
|
||||
//*************************************************************************
|
||||
TEST_FIXTURE(SetupFixture, test_insert_value_excess)
|
||||
{
|
||||
|
||||
@ -247,6 +247,34 @@ namespace
|
||||
CHECK(isEqual);
|
||||
}
|
||||
|
||||
//*************************************************************************
|
||||
TEST_FIXTURE(SetupFixture, test_insert_value_multiple)
|
||||
{
|
||||
Compare_DataNDC compare_data;
|
||||
DataNDC data;
|
||||
|
||||
data.insert(N0);
|
||||
compare_data.insert(N0);
|
||||
|
||||
data.insert(N1);
|
||||
compare_data.insert(N1);
|
||||
|
||||
data.insert(N2);
|
||||
compare_data.insert(N2);
|
||||
|
||||
// Do it again.
|
||||
data.insert(N0);
|
||||
compare_data.insert(N0);
|
||||
|
||||
data.insert(N1);
|
||||
compare_data.insert(N1);
|
||||
|
||||
data.insert(N2);
|
||||
compare_data.insert(N2);
|
||||
|
||||
CHECK_EQUAL(compare_data.size(), data.size());
|
||||
}
|
||||
|
||||
//*************************************************************************
|
||||
TEST_FIXTURE(SetupFixture, test_insert_value_excess)
|
||||
{
|
||||
|
||||
@ -286,7 +286,7 @@ namespace
|
||||
//*************************************************************************
|
||||
TEST(test_8_notifications)
|
||||
{
|
||||
typedef etl::observer<Notification<1>, Notification<2>, Notification<3>, Notification<4>, Notification<5>, Notification<6>, Notification<7>, Notification<8>> Observer;
|
||||
typedef etl::observer<Notification<1>, Notification<2>, Notification<3>, Notification<4>, Notification<5>, Notification<6>, Notification<7>, Notification<8> > Observer;
|
||||
|
||||
class Observable : public etl::observable<Observer, 1>
|
||||
{
|
||||
@ -299,7 +299,7 @@ namespace
|
||||
//*************************************************************************
|
||||
TEST(test_7_notifications)
|
||||
{
|
||||
typedef etl::observer<Notification<1>, Notification<2>, Notification<3>, Notification<4>, Notification<5>, Notification<6>, Notification<7>> Observer;
|
||||
typedef etl::observer<Notification<1>, Notification<2>, Notification<3>, Notification<4>, Notification<5>, Notification<6>, Notification<7> > Observer;
|
||||
|
||||
class Observable : public etl::observable<Observer, 1>
|
||||
{
|
||||
@ -312,7 +312,7 @@ namespace
|
||||
//*************************************************************************
|
||||
TEST(test_6_notifications)
|
||||
{
|
||||
typedef etl::observer<Notification<1>, Notification<2>, Notification<3>, Notification<4>, Notification<5>, Notification<6>> Observer;
|
||||
typedef etl::observer<Notification<1>, Notification<2>, Notification<3>, Notification<4>, Notification<5>, Notification<6> > Observer;
|
||||
|
||||
class Observable : public etl::observable<Observer, 1>
|
||||
{
|
||||
@ -325,7 +325,7 @@ namespace
|
||||
//*************************************************************************
|
||||
TEST(test_5_notifications)
|
||||
{
|
||||
typedef etl::observer<Notification<1>, Notification<2>, Notification<3>, Notification<4>, Notification<5>> Observer;
|
||||
typedef etl::observer<Notification<1>, Notification<2>, Notification<3>, Notification<4>, Notification<5> > Observer;
|
||||
|
||||
class Observable : public etl::observable<Observer, 1>
|
||||
{
|
||||
@ -338,7 +338,7 @@ namespace
|
||||
//*************************************************************************
|
||||
TEST(test_4_notifications)
|
||||
{
|
||||
typedef etl::observer<Notification<1>, Notification<2>, Notification<3>, Notification<4>> Observer;
|
||||
typedef etl::observer<Notification<1>, Notification<2>, Notification<3>, Notification<4> > Observer;
|
||||
|
||||
class Observable : public etl::observable<Observer, 1>
|
||||
{
|
||||
@ -351,7 +351,7 @@ namespace
|
||||
//*************************************************************************
|
||||
TEST(test_3_notifications)
|
||||
{
|
||||
typedef etl::observer<Notification<1>, Notification<2>, Notification<3>> Observer;
|
||||
typedef etl::observer<Notification<1>, Notification<2>, Notification<3> > Observer;
|
||||
|
||||
class Observable : public etl::observable<Observer, 1>
|
||||
{
|
||||
@ -364,7 +364,7 @@ namespace
|
||||
//*************************************************************************
|
||||
TEST(test_2_notifications)
|
||||
{
|
||||
typedef etl::observer<Notification<1>, Notification<2>> Observer;
|
||||
typedef etl::observer<Notification<1>, Notification<2> > Observer;
|
||||
|
||||
class Observable : public etl::observable<Observer, 1>
|
||||
{
|
||||
@ -377,7 +377,7 @@ namespace
|
||||
//*************************************************************************
|
||||
TEST(test_1_notification)
|
||||
{
|
||||
typedef etl::observer<Notification<1>> Observer;
|
||||
typedef etl::observer<Notification<1> > Observer;
|
||||
|
||||
class Observable : public etl::observable<Observer, 1>
|
||||
{
|
||||
|
||||
@ -189,6 +189,7 @@
|
||||
<ClInclude Include="..\..\mru_cache.h" />
|
||||
<ClInclude Include="..\..\multimap.h" />
|
||||
<ClInclude Include="..\..\multiset.h" />
|
||||
<ClInclude Include="..\..\multi_array.h" />
|
||||
<ClInclude Include="..\..\murmur3.h" />
|
||||
<ClInclude Include="..\..\nullptr.h" />
|
||||
<ClInclude Include="..\..\numeric.h" />
|
||||
|
||||
@ -468,6 +468,9 @@
|
||||
<ClInclude Include="..\..\private\vector_base.h">
|
||||
<Filter>ETL\Private</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\multi_array.h">
|
||||
<Filter>ETL\Containers</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\..\..\unittest-cpp\UnitTest++\AssertException.cpp">
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user