cygwin make error "gcc: no input files"

Ask a Question related to UNIX Programming, Design and Development.

  1. #1

    Default cygwin make error "gcc: no input files"

    i am unable to compile/make olson's time zone code under cygwin. i
    was successful in compiling this code under Sun Solaris 8 with no
    problems. i would greatly appreciate any suggestions about this error
    as i do not use make files often.

    if i have posted to the wrong group, i apologize and please let me
    know what is a more appropriate group. thanks.

    i did modify the Makefile so that the targets are followed by two
    colons (rather than one), ie, target: --> target::

    here is the error:

    ------------------------
    $ which gcc
    /usr/bin/gcc

    $ gcc
    gcc: no input files

    $ make
    MAKE Version 5.2 Copyright (c) 1987, 2000 Borland
    Error: Circular dependency exists in makefile
    all -> ALL -> all
    sed -e 's|AWK=[}]*|AWK=nawk|g' -e
    's|TZDIR=[}]*|TZDIR=/usr/local/etc/zoneinfo|' < tzselect.ksh
    >tzselect
    chmod +x tzselect
    cp yearistype.sh yearistype
    chmod +x yearistype
    gcc -DTZDIR=\"/usr/local/etc/zoneinfo\" zic.o localtime.o
    asctime.o scheck.o ialloc.o -o zic
    gcc: no input files

    ** error 1 ** deleting zic

    $ ls *.c
    asctime.c date.c difftime.c ialloc.c localtime.c logwtmp.c
    scheck.c strftime.c zdump.c zic.c

    $ ls *.o
    ls: *.o: No such file or directory
    ------------------------

    tia - bettyann
    bettyann88 Guest

  2. Similar Questions and Discussions

    1. Contribute error message " No input file specified" .
      I have created a page from a copy of a page on my website and edited it , now i want to preview it in a browser but i am getting an error message ...
    2. #33400 [Opn->Csd]: make "make" a dendency of "make test"
      ID: 33400 Updated by: tony2001@php.net Reported By: nohn@php.net -Status: Open +Status: Closed Bug...
    3. "make Makefile.PL" returns "...up to date"; make returns "no target to make"
      I'm attempting to install a perl module (AppConfig-1.56) on a FreeBSD 4.9 system. It has both perl 5.5.3 and 5.8.3 and several modules are already...
    4. #25305 [Opn->Csd]: "No input file specified." error with Xitami
      ID: 25305 User updated by: goweb at o2 dot co dot uk Reported By: goweb at o2 dot co dot uk -Status: Open +Status: ...
    5. #25305 [NEW]: "No input file specified." error with Xitami
      From: goweb at o2 dot co dot uk Operating system: Windows PHP version: 4.3.3 PHP Bug Type: Other web server Bug description:...
  3. #2

    Default Re: cygwin make error "gcc: no input files"

    bettyann88 wrote:
    > i am unable to compile/make olson's time zone code under cygwin. i
    > was successful in compiling this code under Sun Solaris 8 with no
    > problems. i would greatly appreciate any suggestions about this error
    > as i do not use make files often.
    >
    > if i have posted to the wrong group, i apologize and please let me
    > know what is a more appropriate group. thanks.
    >
    >
    > tia - bettyann
    For Cygwin specific questions it is better to join the cygwin mailing
    list.

    --
    Peter S Tillier
    "Who needs perl when you can write dc, sokoban,
    arkanoid and an unlambda interpreter in sed?"

    Peter S Tillier Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139