public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug fastjar/21826] New: fastjar does not look to see if mkdir takes one or two arguments
@ 2005-05-30 15:40 pinskia at gcc dot gnu dot org
  2005-05-31  1:29 ` [Bug fastjar/21826] " dannysmith at users dot sourceforge dot net
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-05-30 15:40 UTC (permalink / raw)
  To: gcc-bugs

On i386-mingw32, there is another one of those:

../../gcc/fastjar/jartool.c: In function 'extract_jar':
../../gcc/fastjar/jartool.c:1770: error: too many arguments to function 'mkdir'

Looks like MKDIR_TAKES_ONE_ARG is not defined as it should be.

-- 
           Summary: fastjar does not look to see if mkdir takes one or two
                    arguments
           Product: gcc
           Version: 4.0.0
            Status: UNCONFIRMED
          Keywords: build
          Severity: normal
          Priority: P2
         Component: fastjar
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: pinskia at gcc dot gnu dot org
                CC: gcc-bugs at gcc dot gnu dot org


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21826


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug fastjar/21826] fastjar does not look to see if mkdir takes one or two arguments
  2005-05-30 15:40 [Bug fastjar/21826] New: fastjar does not look to see if mkdir takes one or two arguments pinskia at gcc dot gnu dot org
@ 2005-05-31  1:29 ` dannysmith at users dot sourceforge dot net
  2005-06-01  1:12 ` tromey at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: dannysmith at users dot sourceforge dot net @ 2005-05-31  1:29 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From dannysmith at users dot sourceforge dot net  2005-05-31 01:22 -------
The MKDIR_TAKES_ONE_ARG that is defined for mingw in auto-host.h is a host 
define.

In jartool.c (and in libgcc files - cf PR/21597) we need a target define. 
Perhap targets such as mingw should define a TARGET_MKDIR_TAKES_ONE_ARG in tm.h.

Danny


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21826


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug fastjar/21826] fastjar does not look to see if mkdir takes one or two arguments
  2005-05-30 15:40 [Bug fastjar/21826] New: fastjar does not look to see if mkdir takes one or two arguments pinskia at gcc dot gnu dot org
  2005-05-31  1:29 ` [Bug fastjar/21826] " dannysmith at users dot sourceforge dot net
@ 2005-06-01  1:12 ` tromey at gcc dot gnu dot org
  2005-06-07 20:01 ` fxcoudert at gcc dot gnu dot org
  2005-06-07 20:03 ` pinskia at gcc dot gnu dot org
  3 siblings, 0 replies; 5+ messages in thread
From: tromey at gcc dot gnu dot org @ 2005-06-01  1:12 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From tromey at gcc dot gnu dot org  2005-06-01 01:12 -------
Everything in fastjar/ is built for the host, not the target.

-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21826


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug fastjar/21826] fastjar does not look to see if mkdir takes one or two arguments
  2005-05-30 15:40 [Bug fastjar/21826] New: fastjar does not look to see if mkdir takes one or two arguments pinskia at gcc dot gnu dot org
  2005-05-31  1:29 ` [Bug fastjar/21826] " dannysmith at users dot sourceforge dot net
  2005-06-01  1:12 ` tromey at gcc dot gnu dot org
@ 2005-06-07 20:01 ` fxcoudert at gcc dot gnu dot org
  2005-06-07 20:03 ` pinskia at gcc dot gnu dot org
  3 siblings, 0 replies; 5+ messages in thread
From: fxcoudert at gcc dot gnu dot org @ 2005-06-07 20:01 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From fxcoudert at gcc dot gnu dot org  2005-06-07 20:01 -------
Same thing happens when compiling libgcov (this is indeed a regression, since we
can't build GCC anymore on i386-mingw32).

-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21826


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug fastjar/21826] fastjar does not look to see if mkdir takes one or two arguments
  2005-05-30 15:40 [Bug fastjar/21826] New: fastjar does not look to see if mkdir takes one or two arguments pinskia at gcc dot gnu dot org
                   ` (2 preceding siblings ...)
  2005-06-07 20:01 ` fxcoudert at gcc dot gnu dot org
@ 2005-06-07 20:03 ` pinskia at gcc dot gnu dot org
  3 siblings, 0 replies; 5+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-06-07 20:03 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-06-07 20:02 -------
(In reply to comment #3)
> Same thing happens when compiling libgcov (this is indeed a regression, since we
> can't build GCC anymore on i386-mingw32).
That is PR 21597.


-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
OtherBugsDependingO|                            |21597
              nThis|                            |
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|                            |1
   Last reconfirmed|0000-00-00 00:00:00         |2005-06-07 20:02:55
               date|                            |


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21826


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2005-06-07 20:03 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-05-30 15:40 [Bug fastjar/21826] New: fastjar does not look to see if mkdir takes one or two arguments pinskia at gcc dot gnu dot org
2005-05-31  1:29 ` [Bug fastjar/21826] " dannysmith at users dot sourceforge dot net
2005-06-01  1:12 ` tromey at gcc dot gnu dot org
2005-06-07 20:01 ` fxcoudert at gcc dot gnu dot org
2005-06-07 20:03 ` pinskia at gcc dot gnu dot org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).