maq getting started
Ahhh,
sorry but I usually don't work with Macs so I can't really help you. However I have some thoughts about your last error message:
It seems that you are trying to compile a 64bit version of maq by linking a 32bit library which can't work. You could try two things:
1)
make clean
set the environment variable CC to "gcc -m32" (I assume gcc is your compiler)
./configure
make
2)
make clean
edit the file Makefile.generic and look for CFLAGS; change -m64 into -m32
make -f Makefile.generic
Hmm, I don't know if that really helps you. You could also ask the author of maq for a compiled binary for your Mac.
Maybe one of the other mac users in this forum can help you out ...
Wish you luck ,
Andreas
Ahhh,
sorry but I usually don't work with Macs so I can't really help you. However I have some thoughts about your last error message:
It seems that you are trying to compile a 64bit version of maq by linking a 32bit library which can't work. You could try two things:
1)
make clean
set the environment variable CC to "gcc -m32" (I assume gcc is your compiler)
./configure
make
2)
make clean
edit the file Makefile.generic and look for CFLAGS; change -m64 into -m32
make -f Makefile.generic
Hmm, I don't know if that really helps you. You could also ask the author of maq for a compiled binary for your Mac.
Maybe one of the other mac users in this forum can help you out ...
Wish you luck ,
Andreas
Comment