From mboxrd@z Thu Jan 1 00:00:00 1970 From: Grant Likely Date: Tue, 22 Nov 2005 22:45:19 -0700 Subject: [U-Boot-Users] is there any other toolchains for u-boot of mips arch? In-Reply-To: <50c9a2250511222131qc5431cax9ab547e92918fb8d@mail.gmail.com> References: <50c9a2250511221728o44c2c318ia2c347fa658ee548@mail.gmail.com> <4383E387.5010805@secretlab.ca> <50c9a2250511222131qc5431cax9ab547e92918fb8d@mail.gmail.com> Message-ID: <438401EF.20009@secretlab.ca> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Some quick etiquette points if your going to use the mailing list: 1. Put your replies *below* what your replying to, not above. 2. Always CC the mailing list on replies 3. Don't just describe what you saw; attach logs also. zhuzhenhua wrote: > i do not get clear about it > $ export PATH=/path/to/mips-linux-as/bin:$PATH > > /path/to/mips-linux-as/bin is what path? If mips-linux-as is in the path /opt/mips-linux/bin, then: $ export PATH=/opt/mips-linux/bin:$PATH Basically, your tools should be in your path so you can run the tools from the command line like this: $ mips-linux-as > > do you mean change my toolchain dir name to mips-linux-as? I think your confused. What is the full path of your cross compiler? Here's an example: My cross toolchain is: powerpc-linux It lives in: /opt/powerpc-linux The path to the cross gcc is: /opt/powerpc-linux/bin/powerpc-linux-gcc Therefore I set in my environment: $ PATH=/opt/powerpc-linux/bin:$PATH $ CROSS_COMPILE=powerpc-linux- $ export PATH CROSS_COMPILE