Installing a Program called MAQ (Beginner Here)


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Installing a Program called MAQ (Beginner Here)
# 1  
Old 06-07-2010
Installing a Program called MAQ (Beginner Here)

Basically, I'm trying to install this program called MAQ.

Maq User's Manual

I've downloaded it and I tried to type in $ ./configure; make; make install

but the ouput I got was this:

Code:
bash: ./configure: No such file or directory
make[1]: Entering directory `/home/vlay/bwa-0.5.0'
make[1]: Nothing to be done for `lib'.
make[1]: Leaving directory `/home/vlay/bwa-0.5.0'
make[1]: Entering directory `/home/vlay/bwa-0.5.0/bwt_gen'
gcc -c -g -Wall -O2 -m64 -DHAVE_PTHREAD   bwt_gen.c -o bwt_gen.o
make[1]: gcc: Command not found
make[1]: *** [bwt_gen.o] Error 127
make[1]: Leaving directory `/home/vlay/bwa-0.5.0/bwt_gen'
make: *** [lib-recur] Error 1
make: *** No rule to make target `install'.  Stop.

I'm not sure what any of that really means. I'm also using Cygwin, but again I don't know if that matters.

Thanks for all the help. I'm still really new to all this.

Last edited by pludi; 06-08-2010 at 02:04 AM.. Reason: code tags, please...
# 2  
Old 06-07-2010
You're not going to get very far without a C compiler installed. Smilie Or, if you do have one, it's not in your path.
This User Gave Thanks to Corona688 For This Post:
# 3  
Old 06-07-2010
What is that? And how would I get it?

Thanks.
# 4  
Old 06-07-2010
It's the program that converts and bundles .c files into executable files. It's necessary to compile most UNIX programs. You'd get that the same way you installed cygwin -- its installer handles other packages too.
This User Gave Thanks to Corona688 For This Post:
# 5  
Old 06-08-2010
I'm not entirely sure if I got the C Compiler from Cygwin's installer. Which one should I be looking for?

I keep trying to install MAQ and it says that

"./configure: No such file or directory"
# 6  
Old 06-08-2010
It means what it says, there's no file named ./configure in the current directory. The ./configure script is only there by tradition, some things have a completely different build procedure, and the website may be out of date; check any readme's or INSTALL files the download came with first. And from what you posted earlier, you already have a makefile, so try running 'make' again.

As for what you need, 'gcc4', 'gcc4-core', 'gcc4-g++', and 'gcc4-runtime' should get you a compiler, though ideally just gcc4 should pull in the things you need. You may also need headers for whatever libraries maq requires.

Last edited by Corona688; 06-08-2010 at 02:38 PM..
This User Gave Thanks to Corona688 For This Post:
# 7  
Old 06-08-2010
Ok,

I got the gcc things you listed, but ./configure still said the same thing about no such file or directory

I then tried just typing make but I got this error

Code:
$ make
make[1]: Entering directory `/home/vlay/download/bwa-0.5.0'
make[1]: Nothing to be done for `lib'.
make[1]: Leaving directory `/home/vlay/download/bwa-0.5.0'
make[1]: Entering directory `/home/vlay/download/bwa-0.5.0/bwt_gen'
gcc -c -g -Wall -O2 -m64 -DHAVE_PTHREAD   bwt_gen.c -o bwt_gen.o
bwt_gen.c:1: sorry, unimplemented: 64-bit mode not compiled in
make[1]: *** [bwt_gen.o] Error 1
make[1]: Leaving directory `/home/vlay/download/bwa-0.5.0/bwt_gen'
make: *** [lib-recur] Error 1


Also the program didn't come with a readme file :/

Moderator's Comments:
Mod Comment Please use code tags

Last edited by vlay2; 06-08-2010 at 02:50 PM.. Reason: Code tags
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Ubuntu

erro while installing new program

Hi, I am using ubuntu 12.04 and everytime I installed a new program I get except from the error message I have no problem. I mean it does install the progrm, and I can use it. but still everytime I installed a program I get that error message, what is the reason for this? (3 Replies)
Discussion started by: programAngel
3 Replies

2. UNIX for Dummies Questions & Answers

shell program- how many times a function is called

We have a program source C and is required to indicate how many times each function is called from the C program. also print the line number where there is a call. I've tried something like this: #!/bin/sh for i in $*;do if ! then echo $i is not a C file. else echo $i... (0 Replies)
Discussion started by: oana06
0 Replies

3. Shell Programming and Scripting

Can a shell variable be called in a cobol program

Hi All, I have a file which sets all the variables on unix , based on the hostname. Currently these variables are hardcoded in the cobol programs.I was wondering if unix variables can be used in Cobol programs ? Example : I have a variable $SHTEMP which is set based on the following : Prod... (2 Replies)
Discussion started by: nua7
2 Replies

4. Shell Programming and Scripting

Help with simple program. (beginner)

Hey all, Writing a program that searches for a username and if they are online creates a 'beep' and sends the username and date to a log file. the error i am getting is: paul.obrien16@aisling:~/os$ bash checklogin : command not found Enter username paul.obrien16 ': not a valid... (2 Replies)
Discussion started by: sexyladywall
2 Replies

5. Linux

Beginner questions about versions and installing

1. I have never used or dealt with unix, linux, or any variation thereof, and want to. My biggest problem is that all the versions I've looked at want you to install from a CD or DVD, but I'm wanting to put it onto an Asus eeepc, which has no such drive. How would I go about installing on it? ... (4 Replies)
Discussion started by: lemming
4 Replies

6. UNIX for Dummies Questions & Answers

Problems installing a program through Terminal in Mac OS X

Hey all.. I have a problem with the BitTorrent client called Deluge. (Deluge BitTorrent Client). Followed the guide on their homepage, but can't get it to work. First of all I have installed Xcode Tools 3.0 and MacPorts. I did the "sudo port install deluge" command, and all packages seemed to... (1 Reply)
Discussion started by: Sixmax
1 Replies

7. Shell Programming and Scripting

Problems installing a program in Terminal

Hey First of all: I'm on a Mac. I'm quite new to this, so forgive me if i sound like a newb :-) I wish to install the Deluge BitTorrent client. First of all I installed Macports and made it run smooth. But then I ran into a problem when I should install Deluge. I can post the log, and maybe... (4 Replies)
Discussion started by: Sixmax
4 Replies

8. Shell Programming and Scripting

pass arguments to called program

Thank you very much. (2 Replies)
Discussion started by: ShellUser
2 Replies

9. UNIX for Dummies Questions & Answers

Installing a program

Finished installing freebsd and just installed firefox from the ports collection. Which file do I have to edit (and how) so a "firefox" command would launch it without having to type in the entire directory? =/ Also, I would appreciate it if you could point me towards any documentation about... (2 Replies)
Discussion started by: ImperialPanda
2 Replies

10. UNIX for Dummies Questions & Answers

Installing a program!

Hello, I have downloaded the GCC program version 2.95 and I don't know how to install it! Of course it has a folder called install and there are some files. So please help me to install this program. :) I use Red hat Linux version 8.0 Thank you Creative ;) (1 Reply)
Discussion started by: creative
1 Replies
Login or Register to Ask a Question