Re: about head file/source file
From: E. Robert Tisdale (E.Robert.Tisdale_at_jpl.nasa.gov)
Date: 06/05/04
- Next message: Jack Klein: "Re: Pointer-to-array issues in C vs C++"
- Previous message: Alf P. Steinbach: "Re: Unable to VirtualAllocEx more than 32664 items."
- In reply to: Jinjun Xu: "about head file/source file"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: Fri, 04 Jun 2004 21:24:44 -0700
Jinjun Xu wrote:
> I am programming with VC++ (6) in windows.
I'm very sorry to hear that.
> I am using LASPACK (anyone used it before?),
http://www.netlib.org/utk/papers/iterative-survey/node35.html
No, but I've used LAPACK.
> which is a linear equation solvers package
> containing many head files and source files.
> When I want to call the functions from that package,
> I use "#include xxx.h" in my file.
Try
#include "xxx.h"
instead.
> But the problem is that
> then I need to add many related .c files into my project.
> It makes my project file view messy.
> Do you know anyway to solve this problem?
> (So that I don't need to add those source files one by one?
> or just call a batch file)
I found installation instructions for UNIX but not Windows.
http://www.mgnet.org/mgnet/Codes/laspack/html/laspack.html
How did you get it to install? The installation instructions for UXIX
help you build and install a *library*
which is automatically linked into your program.
Follow the [Installation] link at the URL above then click on
the [contact the author] button near the bottom of the page
to get help building this software package for Windows.
- Next message: Jack Klein: "Re: Pointer-to-array issues in C vs C++"
- Previous message: Alf P. Steinbach: "Re: Unable to VirtualAllocEx more than 32664 items."
- In reply to: Jinjun Xu: "about head file/source file"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|