Skip to content

Commit

Permalink
Finally get the avr-gcc port really compile on the alpha architecture,
Browse files Browse the repository at this point in the history
by forcing the CFLAGS to -O -pipe.  Somehow, the alpha build always
tries to enforce a particular -mcpu=ev4 flag which of course cannot be
understood by the (AVR) xgcc later on.  This looks to me like a bug in
the cross-compilation environment of gcc, but i'm tired of actually
finding the bug.

The compiled result of avr-gcc MD5 compares equal to something build
from an IA32 host platform.
  • Loading branch information
Joerg Wunsch authored and Joerg Wunsch committed Mar 16, 2001
1 parent e923766 commit f1bf3ec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions devel/avr-gcc-3/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ USE_GMAKE= yes
GNU_CONFIGURE= yes

CONFIGURE_ARGS= --target=avr
CONFIGURE_ENV= CFLAGS="-O -pipe"

MAKE_FLAGS= LANGUAGES="c"

Expand Down
1 change: 1 addition & 0 deletions devel/avr-gcc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ USE_GMAKE= yes
GNU_CONFIGURE= yes

CONFIGURE_ARGS= --target=avr
CONFIGURE_ENV= CFLAGS="-O -pipe"

MAKE_FLAGS= LANGUAGES="c"

Expand Down

0 comments on commit f1bf3ec

Please sign in to comment.