Facing issue in compiling tslib

Abhi11
I am getting this error while I am running the sudo make install

../libtool: line 1085: arm-none-linux-gnueabi-ranlib: command not found
make[2]: *** [install-libLTLIBRARIES] Error 127
make[2]: Leaving directory `/home/abhinav/Videos/tsib/tslib/src'
make[1]: *** [install-am] Error 2
make[1]: Leaving directory `/home/abhinav/Videos/tsib/tslib/src'
make: *** [install-recursive] Error 1

I followed this article

http://mini2440vietnam.blogspot.in/2011/04/upgrade-qt462-in-mini2440.html

davef
OK, I see you have started another thread.

The process now is to take the whole error message and drop it into the
search function on this site, like this:

arm-none-linux-gnueabi-ranlib: command not found

There are 3 pages of relevant hits.

#make proceeded without error?

If you dig into the toolchain directory is arm-none-linux-gnueabi-ranlib in
one of its directories?

Abhi11
Hi davef,

I didn't find any discussion having same problem.

#make is completed successfully.

I am facing issue in last step.i.e in sudo make install

Can you suggest something

davef
Maybe this one:
http://www.friendlyarm.net/forum/topic/5516

I put arm-none-linux-gnueabi-ranlib: command not found into Google

Abhi11
No..I already gone through this post.I am doubting on my ./autogen.sh
command.Please see its output.Lots of warnings.

libtoolize: putting auxiliary files in `.'.
libtoolize: copying file `./ltmain.sh'
libtoolize: putting macros in `m4/internal'.
libtoolize: copying file `m4/internal/libtool.m4'
libtoolize: copying file `m4/internal/ltoptions.m4'
libtoolize: copying file `m4/internal/ltsugar.m4'
libtoolize: copying file `m4/internal/ltversion.m4'
libtoolize: copying file `m4/internal/lt~obsolete.m4'
libtoolize: Consider adding `AC_CONFIG_MACRO_DIR([m4])' to configure.ac and
libtoolize: rerunning libtoolize, to keep the correct libtool macros
in-tree.
configure.ac:27: installing './config.guess'
configure.ac:27: installing './config.sub'
configure.ac:7: installing './install-sh'
configure.ac:7: installing './missing'
plugins/Makefile.am:13: warning: 'INCLUDES' is the old name for
'AM_CPPFLAGS' (or '*_CPPFLAGS')
src/Makefile.am:23: warning: source file '$(top_srcdir)/plugins/linear.c'
is in a subdirectory,
src/Makefile.am:23: but option 'subdir-objects' is disabled
automake: warning: possible forward-incompatibility.
automake: At least a source file is in a subdirectory, but the
'subdir-objects'
automake: automake option hasn't been enabled.  For now, the corresponding
output
automake: object file(s) will be placed in the top-level directory. 
However,
automake: this behaviour will change in future Automake versions: they will
automake: unconditionally cause object files to be placed in the same
subdirectory
automake: of the corresponding sources.
automake: You are advised to start using 'subdir-objects' option throughout
your
automake: project, to avoid future incompatibilities.
src/Makefile.am:27: warning: source file '$(top_srcdir)/plugins/dejitter.c'
is in a subdirectory,
src/Makefile.am:27: but option 'subdir-objects' is disabled
src/Makefile.am:31: warning: source file
'$(top_srcdir)/plugins/linear-h2200.c' is in a subdirectory,
src/Makefile.am:31: but option 'subdir-objects' is disabled
src/Makefile.am:35: warning: source file '$(top_srcdir)/plugins/variance.c'
is in a subdirectory,
src/Makefile.am:35: but option 'subdir-objects' is disabled
src/Makefile.am:39: warning: source file '$(top_srcdir)/plugins/pthres.c'
is in a subdirectory,
src/Makefile.am:39: but option 'subdir-objects' is disabled
src/Makefile.am:43: warning: source file
'$(top_srcdir)/plugins/ucb1x00-raw.c' is in a subdirectory,
src/Makefile.am:43: but option 'subdir-objects' is disabled
src/Makefile.am:47: warning: source file
'$(top_srcdir)/plugins/corgi-raw.c' is in a subdirectory,
src/Makefile.am:47: but option 'subdir-objects' is disabled
src/Makefile.am:51: warning: source file
'$(top_srcdir)/plugins/collie-raw.c' is in a subdirectory,
src/Makefile.am:51: but option 'subdir-objects' is disabled
src/Makefile.am:55: warning: source file
'$(top_srcdir)/plugins/h3600-raw.c' is in a subdirectory,
src/Makefile.am:55: but option 'subdir-objects' is disabled
src/Makefile.am:59: warning: source file
'$(top_srcdir)/plugins/mk712-raw.c' is in a subdirectory,
src/Makefile.am:59: but option 'subdir-objects' is disabled
src/Makefile.am:63: warning: source file
'$(top_srcdir)/plugins/arctic2-raw.c' is in a subdirectory,
src/Makefile.am:63: but option 'subdir-objects' is disabled
src/Makefile.am:67: warning: source file
'$(top_srcdir)/plugins/tatung-raw.c' is in a subdirectory,
src/Makefile.am:67: but option 'subdir-objects' is disabled
src/Makefile.am:71: warning: source file
'$(top_srcdir)/plugins/input-raw.c' is in a subdirectory,
src/Makefile.am:71: but option 'subdir-objects' is disabled
tests/Makefile.am:12: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS'
(or '*_CPPFLAGS')

davef
What are you using for your host computer?  32 or 64 bit?

Are you you have all the required tools installed on your computer.  Only
some of them are listed in that link.

Maybe try sudo apt-get install autoconf

Abhi11
I am using 64 bit host comp.

davef
There is another tool required on 64 bit machines.

Seeing as I use 32bits I only vaguely recall the name of it.
Something like lib32-a or ??

davef
Maybe,

sudo apt-get install ia32-libs

http://askubuntu.com/questions/297151/how-to-run-32-bit-programs-on-a-64...

davef
http://www.friendlyarm.net/forum/topic/4441