Sponsored Content
Top Forums Shell Programming and Scripting GFORTRAN error in makefile installation Post 302911888 by Jefferson_dhv on Monday 4th of August 2014 08:57:34 AM
Old 08-04-2014
Error GFORTRAN error in makefile installation

Hi all,

I'm a new Linux and gfortran user so facing this problem I could not figure out how to proceed. Trying to install a program with a makefile, at some point the installation stops showing the following error:

Code:
g++ -std=c++0x -O3   -o CAMILObash.exe ./objects/Class_SurfTri_CheckTools.o ./objects/Class_SurfTri_CleaningTools.o
 ./objects/Class_SurfTri_GenerationTools.o ./objects/Class_SurfTri_IOFunct.o ./objects/Class_SurfTri_Methods.o ./objects
/Class_SurfTri_SelectionTools.o ./objects/libRA_FFD.o ./objects/libRA_GEODESIC.o ./objects/libRA_Input.o ./objects/libRA_RGLocRef.o
 ./objects/libRA_SelectionI_O.o ./objects/lib_STL_IO.o ./objects/main.o ./objects/OptTri_IOFunct.o ./objects/Sort_Algorithms.o ./objects
/STL_IOFunct.o ./objects/VTK_IOFunct.o -L./loclibs/ -lskitLOCAL -L/usr/lib/ -llapack -lblas 
/usr/bin/ld: ./loclibs//libskitLOCAL.a(ilut.o): undefined reference to symbol '_gfortran_transfer_real_write@@GFORTRAN_1.4'
/usr/lib/x86_64-linux-gnu/libgfortran.so.3: error adding symbols: DSO missing from command line
collect2: error: ld returned 1 exit status
make: *** [all] Error 1

Does anyone know what I could do to solve it?

Thanks in advance,
Jefferson
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

makefile error

Hi, i have am make file problem too. It is driving me mad! My make file is: Code: program : main.o a.o b.o cc -o program main.o a.o b.o main.o : main.c cc -c main.c a.o : a.c cc -c a.c b.o : b.c cc -c b.c When I run it i just get the following error... (2 Replies)
Discussion started by: cb.mark
2 Replies

2. Programming

Error in MakeFile

Hi, I am trying to make 2 programs using a makefile.. 1. gcc aaa.c -o aaa -lrt 2. gcc bbb.c -o bbb -lrt The makefile for the same has been done as follows.... Show Recent Messages (F3) CC=gcc CFLAGS=-g all: aaa bbb aaa: aaa.o $(CC) $(CFLAGS) -o $@ aaa.o (2 Replies)
Discussion started by: jacques83
2 Replies

3. UNIX for Dummies Questions & Answers

Proc Makefile error

Hi When i am compile the makefile i am getting this error. make: Fatal error in reader: Makefile, line 25: Extra `:', `::', or `:=' on dependency line Following Content is the makefile. HDR_INSTALL = CommonDb.h rpts.h rptslogfmts.h CCFLAGS+= -g -v BINDIR = $(INSTALLROOT)/bin... (0 Replies)
Discussion started by: nagasundaramn
0 Replies

4. Shell Programming and Scripting

error in MakeFile.Solaris

Hi, I am getting the follwing error while i was running the shell script to make the build. make: Fatal error in reader: Makefile.Solaris_2.6, line 157: Unexpected end of line seen . May i knwo what does this mean.The line 157 has the last file that is supposed to be copied from the... (2 Replies)
Discussion started by: palurugururaja
2 Replies

5. UNIX for Dummies Questions & Answers

error while running a makefile

any good website to know about makefiles (3 Replies)
Discussion started by: raviravula
3 Replies

6. UNIX for Advanced & Expert Users

Makefile problem - How to run module load in a Makefile

Hi, I'm trying to run the module load command in a Makefile and i'm getting the following error: make: module: command not found Why is this? Is there any way to run this command in a Makefile? NOTE: command - module load msjava/sunjdk/1.5.0 works fine outside of the Makefile (2 Replies)
Discussion started by: hernandinho
2 Replies

7. Homework & Coursework Questions

Help with Simple Multi-Level Makefile (Extremely New at Makefile)

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: Basically, the prompt is make a makefile with various sub makefiles in their respective subdirectories. All code... (1 Reply)
Discussion started by: Tatl
1 Replies

8. Programming

gfortran compiling error: Expected a right parenthesis in expression at (1)

Hello, I am compiling a code with gfortran and get one error. I have not been successful in re-writing the line so that it will compile. Any suggestions for a re-written line? WRITE (IUNITITERV, 104) ((V(1,I),V(2,I)), I=1, NUMNOD) 1 Error:... (2 Replies)
Discussion started by: jm4smtddd
2 Replies

9. Solaris

Solaris 10 flash installation - fatal error. Solaris installation program exited.

Not very helpful to say the least. Seems to read the flar file and go through the upgrade and then come up with this error. Any ideas? (1 Reply)
Discussion started by: psychocandy
1 Replies

10. Programming

Makefile syntax error

I have the following piece and getting make ----------------------------------- getvel ./getvel_main.cpp ./getvel_main.cpp: 1: ./getvel_main.cpp: //: Permission denied ./getvel_main.cpp: 2: ./getvel_main.cpp: //: Permission denied ./getvel_main.cpp: 3: ./getvel_main.cpp: //:... (2 Replies)
Discussion started by: kristinu
2 Replies
GIT-PRUNE(1)                                                        Git Manual                                                        GIT-PRUNE(1)

NAME
git-prune - Prune all unreachable objects from the object database SYNOPSIS
git prune [-n] [-v] [--progress] [--expire <time>] [--] [<head>...] DESCRIPTION
Note In most cases, users should run git gc, which calls git prune. See the section "NOTES", below. This runs git fsck --unreachable using all the refs available in refs/, optionally with additional set of objects specified on the command line, and prunes all unpacked objects unreachable from any of these head objects from the object database. In addition, it prunes the unpacked objects that are also found in packs by running git prune-packed. It also removes entries from .git/shallow that are not reachable by any ref. Note that unreachable, packed objects will remain. If this is not desired, see git-repack(1). OPTIONS
-n, --dry-run Do not remove anything; just report what it would remove. -v, --verbose Report all removed objects. --progress Show progress. --expire <time> Only expire loose objects older than <time>. -- Do not interpret any more arguments as options. <head>... In addition to objects reachable from any of our references, keep objects reachable from listed <head>s. EXAMPLE
To prune objects not used by your repository or another that borrows from your repository via its .git/objects/info/alternates: $ git prune $(cd ../another && git rev-parse --all) NOTES
In most cases, users will not need to call git prune directly, but should instead call git gc, which handles pruning along with many other housekeeping tasks. For a description of which objects are considered for pruning, see git fsck's --unreachable option. SEE ALSO
git-fsck(1), git-gc(1), git-reflog(1) GIT
Part of the git(1) suite Git 2.17.1 10/05/2018 GIT-PRUNE(1)
All times are GMT -4. The time now is 10:52 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy