This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Restricting with Multilib
- From: Mohamed Shafi <shafitvm at gmail dot com>
- To: GCC <gcc at gcc dot gnu dot org>
- Date: Thu, 8 Mar 2012 12:30:54 +0530
- Subject: Restricting with Multilib
Hi,
For the target that i am porting needs a cpu command line option i.e
it doesn't have a default option. Currently it takes 3 variant, say
cpu1, cpu2, cpu3.
So when i enable multilib option
MULTILIB_OPTIONS = mcpu=1/mcpu=2/mcpu=3
I get the following libgcc variants:
cpu1/libgcc
cpu2/libgcc
cpu3/libgcc
libgcc
That includes i variant for each cpu and a default version. Is there
any way to restrict GCC from building the default version?
Regards,
Shafi