Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [buildroot 0001448]: buildroot cannot build gcc due to wrong option passed to 'exec'
@ 2007-07-28 12:22 bugs at busybox.net
  0 siblings, 0 replies; 3+ messages in thread
From: bugs at busybox.net @ 2007-07-28 12:22 UTC (permalink / raw)
  To: buildroot


The following issue has been SUBMITTED. 
====================================================================== 
http://busybox.net/bugs/view.php?id=1448 
====================================================================== 
Reported By:                pavko
Assigned To:                buildroot
====================================================================== 
Project:                    buildroot
Issue ID:                   1448
Category:                   Architecture Specific
Reproducibility:            always
Severity:                   major
Priority:                   normal
Status:                     assigned
====================================================================== 
Date Submitted:             07-28-2007 05:22 PDT
Last Modified:              07-28-2007 05:22 PDT
====================================================================== 
Summary:                    buildroot cannot build gcc due to wrong option
passed to 'exec'
Description: 
probably key point is:
buildroot_svn/toolchain_build_i686/gcc-4.2.1-initial/./gcc/as: line 2:
exec: -Q: invalid option

tried with gcc-4.2.0 with the same result.
====================================================================== 

Issue History 
Date Modified   Username       Field                    Change               
====================================================================== 
07-28-07 05:22  pavko          New Issue                                    
07-28-07 05:22  pavko          Status                   new => assigned     
07-28-07 05:22  pavko          Assigned To               => buildroot       
======================================================================

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

* [Buildroot] [buildroot 0001448]: buildroot cannot build gcc due to wrong option passed to 'exec'
@ 2007-07-29 21:03 bugs at busybox.net
  0 siblings, 0 replies; 3+ messages in thread
From: bugs at busybox.net @ 2007-07-29 21:03 UTC (permalink / raw)
  To: buildroot


A NOTE has been added to this issue. 
====================================================================== 
http://busybox.net/bugs/view.php?id=1448 
====================================================================== 
Reported By:                pavko
Assigned To:                buildroot
====================================================================== 
Project:                    buildroot
Issue ID:                   1448
Category:                   Architecture Specific
Reproducibility:            always
Severity:                   major
Priority:                   normal
Status:                     assigned
====================================================================== 
Date Submitted:             07-28-2007 05:22 PDT
Last Modified:              07-29-2007 14:03 PDT
====================================================================== 
Summary:                    buildroot cannot build gcc due to wrong option
passed to 'exec'
Description: 
probably key point is:
buildroot_svn/toolchain_build_i686/gcc-4.2.1-initial/./gcc/as: line 2:
exec: -Q: invalid option

tried with gcc-4.2.0 with the same result.
====================================================================== 

---------------------------------------------------------------------- 
 pavko - 07-29-07 14:03  
---------------------------------------------------------------------- 
It seems that file:
/home/pavko/buildroot_svn/toolchain_build_i686/gcc-4.2.1-initial/gcc/as
during initial stage is incorrectly initialized to:

#!/bin/bash                                                               
                                                                           
    
exec "$@" 

After manual change to:

#!/bin/bash                                                               
                                                                           
    
exec
/home/pavko/buildroot_svn/build_i686/staging_dir/usr/i686-linux-uclibc/bin/as
"$@"

compilation was successful 

Issue History 
Date Modified   Username       Field                    Change               
====================================================================== 
07-28-07 05:22  pavko          New Issue                                    
07-28-07 05:22  pavko          Status                   new => assigned     
07-28-07 05:22  pavko          Assigned To               => buildroot       
07-29-07 14:03  pavko          Note Added: 0002644                          
======================================================================

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

* [Buildroot] [buildroot 0001448]: buildroot cannot build gcc due to wrong option passed to 'exec'
@ 2007-07-30  7:41 bugs at busybox.net
  0 siblings, 0 replies; 3+ messages in thread
From: bugs at busybox.net @ 2007-07-30  7:41 UTC (permalink / raw)
  To: buildroot


The following issue has been CLOSED 
====================================================================== 
http://busybox.net/bugs/view.php?id=1448 
====================================================================== 
Reported By:                pavko
Assigned To:                buildroot
====================================================================== 
Project:                    buildroot
Issue ID:                   1448
Category:                   Architecture Specific
Reproducibility:            always
Severity:                   major
Priority:                   normal
Status:                     closed
Resolution:                 open
Fixed in Version:           
====================================================================== 
Date Submitted:             07-28-2007 05:22 PDT
Last Modified:              07-30-2007 00:41 PDT
====================================================================== 
Summary:                    buildroot cannot build gcc due to wrong option
passed to 'exec'
Description: 
probably key point is:
buildroot_svn/toolchain_build_i686/gcc-4.2.1-initial/./gcc/as: line 2:
exec: -Q: invalid option

tried with gcc-4.2.0 with the same result.
====================================================================== 

---------------------------------------------------------------------- 
 pavko - 07-29-07 14:03  
---------------------------------------------------------------------- 
It seems that file:
/home/pavko/buildroot_svn/toolchain_build_i686/gcc-4.2.1-initial/gcc/as
during initial stage is incorrectly initialized to:

#!/bin/bash                                                               
                                                                           
    
exec "$@" 

After manual change to:

#!/bin/bash                                                               
                                                                           
    
exec
/home/pavko/buildroot_svn/build_i686/staging_dir/usr/i686-linux-uclibc/bin/as
"$@"

compilation was successful 

---------------------------------------------------------------------- 
 bernhardf - 07-30-07 00:41  
---------------------------------------------------------------------- 
This indicates that the build went wrong. This file will be generated
properly if the build was fine so far. wipe your object-tree and rebuild. 

Issue History 
Date Modified   Username       Field                    Change               
====================================================================== 
07-28-07 05:22  pavko          New Issue                                    
07-28-07 05:22  pavko          Status                   new => assigned     
07-28-07 05:22  pavko          Assigned To               => buildroot       
07-29-07 14:03  pavko          Note Added: 0002644                          
07-30-07 00:41  bernhardf      Status                   assigned => closed  
07-30-07 00:41  bernhardf      Note Added: 0002645                          
======================================================================

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

end of thread, other threads:[~2007-07-30  7:41 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-07-28 12:22 [Buildroot] [buildroot 0001448]: buildroot cannot build gcc due to wrong option passed to 'exec' bugs at busybox.net
  -- strict thread matches above, loose matches on Subject: below --
2007-07-29 21:03 bugs at busybox.net
2007-07-30  7:41 bugs at busybox.net

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox