Blitz logo

Blitz Support :

From: psong_at_[hidden]
Date: 2005-06-21 10:29:48


I tried the CVS version on my Mac with Tiger but could not pass "make lib". The
error message is:

  Making all in lib
  /bin/sh ../libtool --tag=CXX --mode=link c++ -o libblitz.la -rpath
  /Users/psong/stow/blitz-cvs/lib globals.lo
  rm -fr .libs/libblitz.a
  ar -cru .libs/libblitz.a globals.o~ranlib .libs/libblitz.a
  ar: globals.o~ranlib: No such file or directory
  make[1]: *** [libblitz.la] Error 1
  make: *** [all-recursive] Error 1

Apparently, it should do
  
  ar -cru .libs/libblitz.a globals.o
  ranlib .libs/libblitz.a
  ......

Has anyone seen similar problems on Tiger? FYI, "autoreconf -fiv" gives me

autoreconf: Entering directory `.'
autoreconf: configure.ac: not using Gettext
autoreconf: running: aclocal --force -I m4
/sw/share/aclocal/xmms.m4:17: warning: underquoted definition of
XMMS_TEST_VERSION
  run info '(automake)Extending aclocal'
  or see http://sources.redhat.com/automake/automake.html#Extending-aclocal
/sw/share/aclocal/xmms.m4:62: warning: underquoted definition of AM_PATH_XMMS
/sw/share/aclocal/pstoedit.m4:7: warning: underquoted definition of
AM_PATH_PSTOEDIT
/sw/share/aclocal/movtar.m4:14: warning: underquoted definition of
MOVTAR_TEST_VERSION
/sw/share/aclocal/movtar.m4:59: warning: underquoted definition of
AM_PATH_MOVTAR
/sw/share/aclocal/linc.m4:1: warning: underquoted definition of AM_PATH_LINC
/sw/share/aclocal/libmikmod.m4:11: warning: underquoted definition of
AM_PATH_LIBMIKMOD
/sw/share/aclocal/libfame.m4:6: warning: underquoted definition of
AM_PATH_LIBFAME
/sw/share/aclocal/imlib.m4:9: warning: underquoted definition of AM_PATH_IMLIB
/sw/share/aclocal/imlib.m4:167: warning: underquoted definition of
AM_PATH_GDK_IMLIB
/sw/share/aclocal/gtk.m4:7: warning: underquoted definition of AM_PATH_GTK
/sw/share/aclocal/glib.m4:8: warning: underquoted definition of AM_PATH_GLIB
/sw/share/aclocal/audiofile.m4:12: warning: underquoted definition of
AM_PATH_AUDIOFILE
/sw/share/aclocal/aalib.m4:12: warning: underquoted definition of AM_PATH_AALIB
autoreconf: configure.ac: tracing
autoreconf: running: /usr/bin/glibtoolize --copy --force
Putting files in AC_CONFIG_AUX_DIR, `config'.
/sw/share/aclocal/xmms.m4:17: warning: underquoted definition of
XMMS_TEST_VERSION
  run info '(automake)Extending aclocal'
  or see http://sources.redhat.com/automake/automake.html#Extending-aclocal
/sw/share/aclocal/xmms.m4:62: warning: underquoted definition of AM_PATH_XMMS
/sw/share/aclocal/pstoedit.m4:7: warning: underquoted definition of
AM_PATH_PSTOEDIT
/sw/share/aclocal/movtar.m4:14: warning: underquoted definition of
MOVTAR_TEST_VERSION
/sw/share/aclocal/movtar.m4:59: warning: underquoted definition of
AM_PATH_MOVTAR
/sw/share/aclocal/linc.m4:1: warning: underquoted definition of AM_PATH_LINC
/sw/share/aclocal/libmikmod.m4:11: warning: underquoted definition of
AM_PATH_LIBMIKMOD
/sw/share/aclocal/libfame.m4:6: warning: underquoted definition of
AM_PATH_LIBFAME
/sw/share/aclocal/imlib.m4:9: warning: underquoted definition of AM_PATH_IMLIB
/sw/share/aclocal/imlib.m4:167: warning: underquoted definition of
AM_PATH_GDK_IMLIB
/sw/share/aclocal/gtk.m4:7: warning: underquoted definition of AM_PATH_GTK
/sw/share/aclocal/glib.m4:8: warning: underquoted definition of AM_PATH_GLIB
/sw/share/aclocal/audiofile.m4:12: warning: underquoted definition of
AM_PATH_AUDIOFILE
/sw/share/aclocal/aalib.m4:12: warning: underquoted definition of AM_PATH_AALIB
autoreconf: running: /sw/bin/autoconf-2.59 --force
autoreconf: running: /sw/bin/autoheader-2.59 --force
autoreconf: running: automake --add-missing --copy --force-missing
autoreconf: Leaving directory `.'

Simon

On Tue, Jun 21, 2005 at 07:17:52AM -0400, Brian Helenbrook wrote:
> I have Blitz working on Tiger. I used the cvs version because the
> new version has the option to compile without a fortran compiler.
> These are the steps I took.
>
> cvs -d:pserver:anonymous_at_[hidden]:/cvsroot/blitz login
> cvs -z3 -d:pserver:anonymous_at_[hidden]:/cvsroot/blitz co -P
> blitz
> export LIBTOOLIZE=/usr/bin/glibtoolize
> export LIBTOOL=/usr/bin/glibtool
> autoreconf -fiv
> ./configure --prefix=/Users/helenbrk/Codes --disable-fortran
> make
> make install
>
> This will build using gcc4.0 which is what I wanted. You can
> probably use the gcc-select command to configure it to build with gcc3.3
>
> Brian