Am 17.07.20 um 01:59 schrieb Jim Wilson:
On Thu, Jul 16, 2020 at 1:35 AM Klaus Rudolph <lts-rudolph@xxxxxx> wrote:
'/home/krud/git_my_checkout/first/own_components/gcc_install/gcc/gcc-10.1.0/build/gcc'
g++ -c -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -fno-exceptions
-fno-rtti -fasynchronous-unwind-tables -W -Wall -Wno-narrowing
-Wwrite-strings -Wcast-qual -Wno-error=format-diag
-Wmissing-format-attribute -Woverloaded-virtual -pedantic -Wno-long-long
-Wno-variadic-macros -Wno-overlength-strings -DHAVE_CONFIG_H
-DGENERATOR_FILE -fno-PIE -I. -Ibuild -I../../gcc -I../../gcc/build
-I../../gcc/../include -I../../gcc/../libcpp/include \
-o build/genmodes.o ../../gcc/genmodes.c
/opt/avr_10.1.0/avr/bin/as: unrecognized option '--64'
As I see it tries to use gcc to compile and link with avr-as which is
wrong. What did I wrong?
Looks like a PATH environment variable problem. Do you have "." (dot)
on your path?
Yepp! That was the problem! After removing it everything works fine!
Thanks a lot!