← Back to team overview

kicad-developers team mailing list archive

Re: Feedback on 6.0 work

 

I'm trying to compile your 6.0 branch but it has too many compilation
errors. I don't understand what could be wrong if it works for others. I
use the same setup as for the official kicad source which has worked well.
Linux Kubuntu 17.10 and whatever comes with it.

Errors I managed to fix:
- missing #include <vector> in grid_icon_text_helpers.h
- in drc_item.h, line 93, bAuxiliaryItem->GetSelectMenuText() and
wxEmptyString have different types, changing the latter to
wxString(wxEmptyString) helped
- in class_board.cpp line 82 doesn't override, compiles when changed to
"void Show( int , std::ostream&  ) const {}"

and then I gave up, next would be
common/widgets/grid_icon_text_helpers.cpp:58:9: error: invalid use of
incomplete type ‘class wxDC’
         aDC.DrawBitmap( bitmap, rect.GetLeft(), rect.GetTop(), true );
         ^~~

Follow ups

References