Błędy przy próbie kompilacji checkinstall ze źródła na Cygwin


0

Używam Cygwin na szczycie Windows 7. Mam problem z zainstalowaniem checkinstall narzędzie ze źródła, a sprawcą wydaje się być gcc.

Kiedy uciekam /.configure, Dostaję błąd:

-bash: ./configure: No such file or directory

Więc kontynuuję makei uzyskaj dane wyjściowe, które zawodzą z dużą ilością błędów, prawdopodobnie spowodowane przez gcc. The wyjście można zobaczyć w całości tutaj , ale poniżej znajdują się pierwsze i ostatnie wiersze tego.

$ make
    for file in locale/checkinstall-*.po ; do \
            case ${file} in \
                    locale/checkinstall-template.po)  ;; \
                    *) \
                            out=`echo $file | sed -s 's/po/mo/'` ; \
                            msgfmt -o ${out} ${file} ; \
                            if [ $? != 0 ] ; then \
                                    exit 1 ; \
                            fi ; \
                    ;; \
            esac ; \
    done
    make -C installwatch
    make[1]: Entering directory '/cygdrive/b/Users/Me/Desktop/checkinstall-1.6.2/installwatch'
    gcc -Wall -c -D_GNU_SOURCE -DPIC -fPIC -D_REENTRANT -DVERSION=\"0.7.0beta7\" installwatch.c
   In file included from /usr/local/include/sys/param.h:33:0,
                    from installwatch.c:31:
   /usr/local/include/sys/types.h:10:2: error: #error Only Win32 target is supported!
    #error Only Win32 target is supported!
     ^~~~~
   In file included from /usr/local/include/sys/param.h:33:0,
                    from installwatch.c:31:
   /usr/local/include/sys/types.h:90:3: error: unknown type name ‘time_t’
      time_t  tv_sec; /* Seconds */
      ^~~~~~
   In file included from installwatch.c:33:0:
   /usr/local/include/sys/stat.h:10:2: error: #error Only Win32 target is supported!
    #error Only Win32 target is supported!
     ^~~~~
   In file included from /usr/local/include/sys/stat.h:14:0,
                    from installwatch.c:33:
   /usr/local/include/io.h:199:28: error: expected ‘,’ or ‘;’ before ‘_findfirst32’
      _CRTIMP intptr_t __cdecl _findfirst32(const char *_Filename,struct _finddata32_t *_FindData);
                               ^~~~~~~~~~~~ 


  ...           


    installwatch.c: In function ‘fopen’:
   installwatch.c:2560:51: error: expected ‘)’ before ‘result’
      logg("%" PRIdPTR "\tfopen\t%s\t#%s\n",(intptr_t)result,
                                                       ^~~~~~
    installwatch.c:2560:8: warning: format ‘%s’ expects a matching ‘char *’ argument [-Wformat=]
       logg("%" PRIdPTR "\tfopen\t%s\t#%s\n",(intptr_t)result,
            ^~~
    installwatch.c:2560:8: warning: format ‘%s’ expects a matching ‘char *’ argument [-Wformat=]
    installwatch.c:2575:51: error: expected ‘)’ before ‘result’
       logg("%" PRIdPTR "\tfopen\t%s\t#%s\n",(intptr_t)result,
                                                       ^~~~~~
    installwatch.c:2575:8: warning: format ‘%s’ expects a matching ‘char *’ argument [-Wformat=]
       logg("%" PRIdPTR "\tfopen\t%s\t#%s\n",(intptr_t)result,
            ^~~
    installwatch.c:2575:8: warning: format ‘%s’ expects a matching ‘char *’ argument [-Wformat=]
    installwatch.c: At top level:
    installwatch.c:2600:7: error: conflicting types for ‘getcwd’
     char *getcwd(char *buffer,size_t size) {
           ^~~~~~
    In file included from /usr/local/include/sys/stat.h:14:0,
                     from installwatch.c:33:
    /usr/local/include/io.h:279:17: note: previous declaration of ‘getcwd’ was here
       char *__cdecl getcwd (char *, int) __MINGW_ATTRIB_DEPRECATED_MSVC2005;
                     ^~~~~~
    installwatch.c:2664:30: error: unknown type name ‘uid_t’
     int lchown(const char *path, uid_t owner, gid_t group) {
                                  ^~~~~
    installwatch.c:2664:43: error: unknown type name ‘gid_t’
     int lchown(const char *path, uid_t owner, gid_t group) {
                                               ^~~~~
    installwatch.c:2749:5: error: conflicting types for ‘mkdir’
     int mkdir(const char *pathname, mode_t mode) {
         ^~~~~
    In file included from /usr/local/include/sys/stat.h:14:0,
                     from installwatch.c:33:
    /usr/local/include/io.h:280:15: note: previous declaration of ‘mkdir’ was here
       int __cdecl mkdir (const char *) __MINGW_ATTRIB_DEPRECATED_MSVC2005;
                   ^~~~~
    installwatch.c:2983:7: error: conflicting types for ‘realpath’
     char *realpath(const char *file_name,char *resolved_name) {
           ^~~~~~~~
    installwatch.c:556:6: note: previous implicit declaration of ‘realpath’ was here
      if(!realpath(path,resolved_path)) {
          ^~~~~~~~
    installwatch.c:3309:5: error: conflicting types for ‘utime’
     int utime (const char *pathname, const struct utimbuf *newtimes) {
         ^~~~~
    In file included from /usr/local/include/utime.h:6:0,
                     from installwatch.c:47:
    /usr/local/include/sys/utime.h:115:26: note: previous definition of ‘utime’ was here
     __CRT_INLINE int __cdecl utime(const char *_Filename,struct utimbuf *_Utimbuf) {
                              ^~~~~
    installwatch.c: In function ‘true_stat’:
    installwatch.c:153:1: warning: control reaches end of non-void function [-Wreturn-type]
     }
     ^
    installwatch.c: In function ‘true_lstat’:
    installwatch.c:161:1: warning: control reaches end of non-void function [-Wreturn-type]
     }
     ^
    installwatch.c: In function ‘true_mknod’:
    installwatch.c:157:1: warning: control reaches end of non-void function [-Wreturn-type]
     }
     ^
    In file included from installwatch.c:35:0:
    installwatch.c: In function ‘open’:
    installwatch.c:2842:20: warning: ‘mode_t {aka short unsigned int}’ is promoted to ‘int’ when passed through ‘...’
      mode = va_arg(ap, mode_t);
                        ^
    installwatch.c:2842:20: note: (so you should pass ‘int’ not ‘mode_t {aka short unsigned int}’ to ‘va_arg’)
    installwatch.c:2842:20: note: if this code is reached, the program will abort
    At top level:
    installwatch.c:1040:12: warning: ‘__instw_printdirent64’ defined but not used [-Wunused-function]
     static int __instw_printdirent64(struct dirent64 *entry) {
                ^~~~~~~~~~~~~~~~~~~~~
    make[1]: *** [Makefile:22: installwatch.o] Error 1
    make[1]: Leaving directory '/cygdrive/b/Users/Me/Desktop/checkinstall-1.6.2/installwatch'
    make: *** [Makefile:11: all] Error 2

Przykro mi, jeśli mówię o tym w niewłaściwy sposób, ale jestem całkowicie poza zasięgiem tego kodu i wyrzucanych błędów. Próbowałem ponownie użyć instalatora Cygwin gcc_core i inne gcc pakiety kilka razy bez skutku.

Byłem w trakcie korzystania ten przewodnik skompilować najnowszą wersję gcc ze źródła, zanim również wpadłem na fatalne błędy z tym związane, i postanowiłem zacząć od początku i ustalić, czy problem można rozwiązać bez dodawania jeszcze więcej wzlotów do mojej instalacji Cygwin.


1
Próbować ./configure zamiast /.configure jak napisałeś powyżej. Pierwszy wykonuje configure w bieżącym katalogu i podczas pisania wygląda na ukryty plik o nazwie .configure w katalogu głównym.
headkase

1
»» Obsługiwany jest tylko cel Win32! ««: Myślę, że masz 64-bitowy system operacyjny Windows ©? Poza tym: Checkinstall to starożytna aplikacja → Zwykle nie ma problemów ze starszą wersją gcc: można użyć dowolnej wersji 3.4.6 ... 7.3.0. Budować checkinstall: $ make . To znaczy. nie ma pliku po nazwie configure
Knud Larsen

@ Headkase To była literówka, naprawdę próbowałem ./configure jak wskazuje wyjście.
Hashim

@KnudLarsen Używam 64-bitowego systemu operacyjnego Windows, tak, ale nie rozumiem ostatniego zdania twojego komentarza. Co tu mówisz
Hashim
Korzystając z naszej strony potwierdzasz, że przeczytałeś(-aś) i rozumiesz nasze zasady używania plików cookie i zasady ochrony prywatności.
Licensed under cc by-sa 3.0 with attribution required.