Skip to content

Commit

Permalink
mips1 fix added
Browse files Browse the repository at this point in the history
  gcc.jam was passing the options -m32 and -m64 to mips cross-compilers, when those do not use such options
  This modification solves it by adding mips as an exception

  Signed-off-by: Carlos M. Ferreira carlosmf.pt@gmail.com
  • Loading branch information
ClaymorePT committed Apr 24, 2015
1 parent ae1183e commit c063434
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/gcc.jam
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ rule setup-address-model ( targets * : sources * : properties * )
else
{
local arch = [ feature.get-values architecture : $(properties) ] ;
if $(arch) != arm
if $(arch) != arm && $(arch) != mips1
{
if $(model) = 32
{
Expand Down

0 comments on commit c063434

Please sign in to comment.