> On Oct 1, 2018, at 12:00, via cfe-users <cfe-users@lists.llvm.org> wrote:
> 
> Date: Mon, 1 Oct 2018 21:41:23 +0300
> From: George Anchev via cfe-users <cfe-users@lists.llvm.org>
> To: cfe-users@lists.llvm.org
> Subject: Re: [cfe-users] error: unknown target CPU 'pentium-m'
> Message-ID: <20181001214123.49bb8093@localhost>
> Content-Type: text/plain; charset=US-ASCII
> 
> Can anyone help please?
> 
> —
> George

It’s hard to guess what you’re doing or what your expected outcome is without 
seeing your command line, but perhaps you’re using -march?

    $ clang -march=pentium-m main.c
    error: unknown target CPU 'pentium-m’
    $ clang -mtune=pentium-m main.c
    $
_______________________________________________
cfe-users mailing list
cfe-users@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-users

Reply via email to