30-04-2020, 01:36 PM
When connecting a new version of GCC, an error appears - the default.specs file is missing.
This is a specification file, it allows you to use the libraries available in GCC - in all new and old user projects. On top of the main configuration files.
It turned out like this:
How to use GCC 100%?
This is a specification file, it allows you to use the libraries available in GCC - in all new and old user projects. On top of the main configuration files.
It turned out like this:
Code:
%rename link_gcc_c_sequence def_link_gcc_c_sequence
*def_libc:
-lc
*def_libgloss:
%{specs=rdimon.specs:-lrdimon} %{specs=ebmon.specs:-lebmon} -lnosys
*link_gcc_c_sequence:
%(def_link_gcc_c_sequence) --start-group %G %(def_libc) %(def_libgloss) --end-group
How to use GCC 100%?