What is the -mev6 flag and is it really needed if you specify -mcpu=ev67
Also, some packages like freeglut complain about the lack of a -march flag. Is there an appropriate one to use for alpha ev67?
TIA!!

Code: Select all
CHOST="alpha-unknown-linux-gnu"
CFLAGS="-mieee -mcpu=ev67 -Wa,-mev6 -O2 -pipe "
CXXFLAGS="${CFLAGS}"

The "-Wa,-mev6" just tells gcc to pass the "-mev6" flag to the assembler. The "-mev6" assembler flag tells the assembler it can use EV6-specific instructions. I didn't find a "-mev6" gcc flag (at least in "info gcc" - maybe it's an old flag that's translated internally into a newer one).Lupin_the_3rd wrote:I'm wanting to know what their purpose is
