summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>2002-04-21 15:38:19 +0000
committerallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>2002-04-21 15:38:19 +0000
commitb7b8a71de878a7d54e695df1c1ad77ce88134d3a (patch)
tree5d66ee3b678b272bce99223024a6babf961f01a8
parent98e0d9428c025b72dae9b1999860dce480999f4b (diff)
Added new entry
I get the following error when compiling? Checking status of libIOJpeg.a gmake[3]: *** No rule to make target `/u1/allen/scratch/Cactus/arrangements/ CactusIO/IOJpeg/src/IOJpeg.h', needed by `JPEG.c.d'. Stop. gmake[2]: *** [make.checked] Error 2 gmake[1]: *** [/u1/allen/scratch/Cactus/configs/wave/lib/libIOJpeg.a] Error 2 gmake: *** [wave] Error 2 This is because an include file which was used in your previous compile is no longer there (in this case the file IOJpeg.h was renamed ioJpeg.h). To solve this, delete the dependency information by issuing gmake <config>-cleandeps before compiling again. git-svn-id: http://svn.cactuscode.org/flesh/trunk@2738 17b73243-c579-4c4c-a9d2-2d5706c11dac
-rw-r--r--doc/FAQ21
1 files changed, 20 insertions, 1 deletions
diff --git a/doc/FAQ b/doc/FAQ
index 665fd317..106e6fa4 100644
--- a/doc/FAQ
+++ b/doc/FAQ
@@ -1,7 +1,7 @@
Cactus Code Frequently Asked Questions
-$Header: /mnt/data2/cvs2svn/cvs-repositories/Cactus/doc/FAQ,v 1.27 2002-04-13 21:16:29 allen Exp $
+$Header: /mnt/data2/cvs2svn/cvs-repositories/Cactus/doc/FAQ,v 1.28 2002-04-21 15:38:19 allen Exp $
Also available at http://www.cactuscode.org/Documentation/FAQ
@@ -409,3 +409,22 @@ Also available at http://www.cactuscode.org/Documentation/FAQ
than MPICH though.
-------------------------------------------------------------------------------
+
+30. I get the following error when compiling?
+
+ Checking status of libIOJpeg.a
+ gmake[3]: *** No rule to make target `/u1/allen/scratch/Cactus/arrangements/
+ CactusIO/IOJpeg/src/IOJpeg.h', needed by `JPEG.c.d'. Stop.
+ gmake[2]: *** [make.checked] Error 2
+ gmake[1]: *** [/u1/allen/scratch/Cactus/configs/wave/lib/libIOJpeg.a] Error 2
+ gmake: *** [wave] Error 2
+
+ This is because an include file which was used in your previous compile is
+ no longer there (in this case the file IOJpeg.h was renamed ioJpeg.h).
+ To solve this, delete the dependency information by issuing
+
+ gmake <config>-cleandeps
+
+ before compiling again.
+
+-------------------------------------------------------------------------------