|
From: John B. <joh...@ho...> - 2013-07-05 00:02:10
|
On Fri, 5 Jul 2013 07:19:39 +0800, Kim wrote: > > On 2013/07/05 3:42, Earnie Boyd wrote: >> Ok, thanks. Your PATH is a bit unsightly. Let's try this experiment. >> >> $ export PATH=.:/mingw/bin:/bin >> $ cd /path/containing/binutils-2.23.1 >> $ rm -rf bintuils-2.23.1 >> $ tar axf /path/to/binutils-2.23.1.tar.gz >> $ # or whatever the archive tar name is compressed with. >> $ mkdir bld >> $ cd bld >> $ ../bintuils-2.23.1/configure --prefix=/mingw >> $ make >> > > Same result with incorrect BINDIR, I pastebinned the output while > following your instructions in case you notice something I didn't. > http://pastebin.com/272vKK2L > Hello Kim, For what it is worth, you created your build directory under the source directory. Since the binutils source is in /c/binutils-2.23.1 you should have created /c/bld and then: $ cd /c/bld $ ../binuils-2.23.1/configure --prefix=/mingw That is, do not build binutils in the binutils source tree. I don't know if it will make a difference, but it is what Earnie wanted you to do. Regards, John Brown. |