Problems compiling gtkmm

前端 未结 2 1666
后悔当初
后悔当初 2021-02-04 04:54

OS: Fedora 14

Compiler: g++ (GCC) 4.5.1 20100924 (Red Hat 4.5.1-4)

I installed gtkmm24-devel from repository via yum. To make sure the install went as planned I

2条回答
  •  面向向阳花
    2021-02-04 05:31

    These steps usually help resolving this problem:

    • Search your computer for glibmm.h
      • If found - add its directory to the include path list
      • If not found - Google for glibmm.h and find out which library it is contained in. You will find out in this case it's (surprise!) glibmm. Install it using your package manager.

    The problem, as noted in comments, is a compiler error and the compiler is arguing about a missing (header) file. The steps I described above either find the location of the missing file or help you to install a library that the header file belongs to.

提交回复
热议问题