If unsure, say N.
+config DYNAMIC_CRC_TABLE
+ bool "Enable Dynamic tables for CRC"
+ help
+ Enable this option to calculate entries for CRC tables at runtime.
+ This can be helpful when reducing the size of the build image
+
config HAVE_PRIVATE_LIBGCC
bool
#define tole(x) cpu_to_le32(x)
-#ifdef DYNAMIC_CRC_TABLE
+#ifdef CONFIG_DYNAMIC_CRC_TABLE
local int crc_table_empty = 1;
local uint32_t crc_table[256];
*/
const uint32_t * ZEXPORT get_crc_table()
{
-#ifdef DYNAMIC_CRC_TABLE
+#ifdef CONFIG_DYNAMIC_CRC_TABLE
if (crc_table_empty) make_crc_table();
#endif
return (const uint32_t *)crc_table;
const uint32_t *tab = crc_table;
const uint32_t *b =(const uint32_t *)buf;
size_t rem_len;
-#ifdef DYNAMIC_CRC_TABLE
+#ifdef CONFIG_DYNAMIC_CRC_TABLE
if (crc_table_empty)
make_crc_table();
#endif