We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
make -C src make[1]: Entering directory '/home/frisco-del-rosario/tarrasch-chess-gui/src' g++ -c -g -std=c++11 wx-config --cxxflags BinDb.cpp -o BinDb.o BinDb.cpp: In function ‘bool bin_db_append(const char*, const char*, const char*, const char*, const char*, const char*, const char*, const char*, const char*, const char*, const char*, int, thc::Move*)’: BinDb.cpp:608:9: error: ‘_CrtMemState’ was not declared in this scope 608 | _CrtMemState heap_info; | ^~~~~~~~~~~~ BinDb.cpp:609:29: error: ‘heap_info’ was not declared in this scope 609 | _CrtMemCheckpoint( &heap_info ); | ^~~~~~~~~ BinDb.cpp:609:9: error: ‘_CrtMemCheckpoint’ was not declared in this scope 609 | _CrtMemCheckpoint( &heap_info ); | ^~~~~~~~~~~~~~~~~ BinDb.cpp:610:9: error: ‘_CrtMemDumpStatistics’ was not declared in this scope 610 | _CrtMemDumpStatistics( &heap_info ); | ^~~~~~~~~~~~~~~~~~~~~ BinDb.cpp:612:25: error: ‘_MAX_BLOCKS’ was not declared in this scope; did you mean ‘STATX_BLOCKS’? 612 | for( int i=0; i<_MAX_BLOCKS; i++ ) | ^~~~~~~~~~~ | STATX_BLOCKS make[1]: *** [Makefile:10: BinDb.o] Error 1 make[1]: Leaving directory '/home/frisco-del-rosario/tarrasch-chess-gui/src' make: *** [Makefile:6: srccode] Error 2
wx-config --cxxflags
The text was updated successfully, but these errors were encountered:
No branches or pull requests
make -C src
make[1]: Entering directory '/home/frisco-del-rosario/tarrasch-chess-gui/src'
g++ -c -g -std=c++11
wx-config --cxxflags
BinDb.cpp -o BinDb.oBinDb.cpp: In function ‘bool bin_db_append(const char*, const char*, const char*, const char*, const char*, const char*, const char*, const char*, const char*, const char*, const char*, int, thc::Move*)’:
BinDb.cpp:608:9: error: ‘_CrtMemState’ was not declared in this scope
608 | _CrtMemState heap_info;
| ^~~~~~~~~~~~
BinDb.cpp:609:29: error: ‘heap_info’ was not declared in this scope
609 | _CrtMemCheckpoint( &heap_info );
| ^~~~~~~~~
BinDb.cpp:609:9: error: ‘_CrtMemCheckpoint’ was not declared in this scope
609 | _CrtMemCheckpoint( &heap_info );
| ^~~~~~~~~~~~~~~~~
BinDb.cpp:610:9: error: ‘_CrtMemDumpStatistics’ was not declared in this scope
610 | _CrtMemDumpStatistics( &heap_info );
| ^~~~~~~~~~~~~~~~~~~~~
BinDb.cpp:612:25: error: ‘_MAX_BLOCKS’ was not declared in this scope; did you mean ‘STATX_BLOCKS’?
612 | for( int i=0; i<_MAX_BLOCKS; i++ )
| ^~~~~~~~~~~
| STATX_BLOCKS
make[1]: *** [Makefile:10: BinDb.o] Error 1
make[1]: Leaving directory '/home/frisco-del-rosario/tarrasch-chess-gui/src'
make: *** [Makefile:6: srccode] Error 2
The text was updated successfully, but these errors were encountered: