Results 1 to 4 of 4

Thread: Compiling Gelide

  1. #1
    Join Date
    May 2014
    Beans
    34

    Compiling Gelide

    I am trying to compile Gelide on Ubuntu 14 and I had some issues with the configure stage but managed to get past them. Now I am having trouble with the make stage and can't understand what the problem is. the error output is below:

    Code:
    utils/process.cpp:78:19: error: ‘close’ was not declared in this scope   close(m_proc_out);
                       ^
    make[2]: *** [process.o] Error 1
    make[2]: Leaving directory `/home/ridge/Downloads/Emulator_ROMS/gelide-0.1.5/src'
    make[1]: *** [all-recursive] Error 1
    make[1]: Leaving directory `/home/ridge/Downloads/Emulator_ROMS/gelide-0.1.5'
    make: *** [all] Error 2

  2. #2
    Join Date
    May 2014
    Beans
    34

    Re: Compiling Gelide

    I found a work around so just ignore this or delete it or whatever

  3. #3
    Join Date
    Jun 2005
    Location
    Toronto, Canada
    Beans
    Hidden!
    Distro
    Xubuntu 16.04 Xenial Xerus

    Re: Compiling Gelide

    Moving to Packaging and Compiling Programs

    The code is buggy - its missing a declaration for close() in src/utils/process.cpp. Just add:
    Code:
    #include <unistd.h>
    ...to the headers section of that file.

    See: https://github.com/DAP-DarkneSS/obs/...a91ef87b98cba4

  4. #4
    Join Date
    Jun 2005
    Location
    Toronto, Canada
    Beans
    Hidden!
    Distro
    Xubuntu 16.04 Xenial Xerus

    Re: Compiling Gelide

    Quote Originally Posted by lunaservant View Post
    I found a work around so just ignore this or delete it or whatever
    You ninja'd me. Lets leave it here with the solution in case some one else looks.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •