Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

make: Fatal error

Status
Not open for further replies.

nawlej

Programmer
Mar 26, 2004
380
US
make: Fatal error: Command failed for target 'test_dynamic'

Ive been getting errors like this all day when I try to run things through make and make test. Does anyone know what the cause is?

___________________________________
[morse]--... ...--[/morse], Eric.
 
I hope someone has a clue, its really getting on my nerves.

___________________________________
[morse]--... ...--[/morse], Eric.
 
What are you typing on the command line? Something like "make test_dynamic". Do you have a makefile?
 
yes i have a make file, it starts to install, but stops on error......i just type make install....what could i check to eliminate a compiler problem?

___________________________________
[morse]--... ...--[/morse], Eric.
 
Check the install script... Sometimes install looks for the executable in a certain place like subdirectory under the source code directory. Most of the time we use the subdirectory called "solaris". If you are saying your program is compiling you should be able to find a test_dynamic.o and test_dynamic*. Make sure you these files are in the proper place for the install script.
 
I fixed it. Was installing a 64 bit program, but only had the 32 bit modules installed. By the way, test_dynamic is the target whenever you run "make test" if your program doesnt have make test capability it will fail.

___________________________________
[morse]--... ...--[/morse], Eric.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top