gigakuma / tstools

Automatically exported from code.google.com/p/tstools
0 stars 0 forks source link

fails to compile on osx #19

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. cd tstools
2. make
3. first off Makefile must be fixed to ignore usage of ppc
   secondly - libtool is given bogus parms of -static and -dynamic
              which fail on osx lion 10.7

What is the expected output? What do you see instead?

        make fails on osx

What version of the product are you using? On what operating system?

macbook pro 
osx lion 10.7.4 (latest as of June 2012)

uname -a
Darwin BAM-025644-SS.local 11.4.0 Darwin Kernel Version 11.4.0: Mon Apr  9 
19:32:15 PDT 2012; root:xnu-1699.26.8~1/RELEASE_X86_64 x86_64

Please provide any additional information below.

libtool: unrecognized option `-static'

Original issue reported on code.google.com by scottste...@gmail.com on 27 Jun 2012 at 9:31

GoogleCodeExporter commented 9 years ago
I've "fixed" the first part of the problem (not trying to build for ppc on an 
OS that no longer supports it) and pushed it.

I can then successfully build the tstools programs on my system:

$ uname -a
Darwin frosch.local 11.4.0 Darwin Kernel Version 11.4.0: Mon Apr  9 19:33:05 
PDT 2012; root:xnu-1699.26.8~1/RELEASE_I386 i386

I'm running OS X 10.7.4, reasonably up-to-date,
with Xcode version 4.3,
and with "libtool -V" showing cctools-822

This version of libtool definitely recognises the -static and -dynamic 
switches. I wonder if a different version of libtool has found its way onto the 
PATH, or else if a later version of Xcode (although the latest version is only 
4.3.3) has done something very strange.

Original comment by t...@tibsnjoan.co.uk on 9 Jul 2012 at 6:47