473,396 Members | 2,011 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

about head file/source file

Hi,

I am programming with VC++ (6) in windows.

I am using LASPACK (anyone used it before?), 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. 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)

Thanks a lot in advance.

JJ
Jul 22 '05 #1
4 2007
Jinjun Xu wrote:
I am programming with VC++ (6) in windows.

I am using LASPACK (anyone used it before?), 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. 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)


Please post this to microsoft.public.vc.ide_general or
microsoft.public.vc.project_mgt. They will tell you how to
set up your project and other stuff.

It has nothing to do with the language, that's why it's off-
topic here.

Victor
Jul 22 '05 #2
got it. Thanks.

I just subscribed those two groups. The second one is almost dead and the
first one, almost dying. Few posts are there. I don't expect that I can get
help from there.

I don't know how to remove the post from here. I will just leave it and if
somebody knows the answer, please do me a favor to tell me (maybe reply to
my mailbox directly). Thanks.

JJ

"Victor Bazarov" <v.********@comAcast.net> wrote in message
news:cW****************@dfw-read.news.verio.net...
Jinjun Xu wrote:
I am programming with VC++ (6) in windows.

I am using LASPACK (anyone used it before?), 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. 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)


Please post this to microsoft.public.vc.ide_general or
microsoft.public.vc.project_mgt. They will tell you how to
set up your project and other stuff.

It has nothing to do with the language, that's why it's off-
topic here.

Victor

Jul 22 '05 #3

"Jinjun Xu" <jj**@ucla.edu> wrote in message
news:c9**********@daisy.noc.ucla.edu...
Hi,

I am programming with VC++ (6) in windows.

I am using LASPACK (anyone used it before?), 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. 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)

Thanks a lot in advance.
Did you try to make library of that source files?
I don't program windows, but there must be easy way
to make lib from source files.
When you make a lib then include lib in your project.
If I can do that with autoconf/atutomake and plain text
editor, you can surely do it with IDE which is supposed to
be easier to handle?
JJ


Greets, Bane.
Jul 22 '05 #4
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/ite...ey/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/las...l/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.
Jul 22 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

220
by: Brandon J. Van Every | last post by:
What's better about Ruby than Python? I'm sure there's something. What is it? This is not a troll. I'm language shopping and I want people's answers. I don't know beans about Ruby or have...
125
by: Sarah Tanembaum | last post by:
Beside its an opensource and supported by community, what's the fundamental differences between PostgreSQL and those high-price commercial database (and some are bloated such as Oracle) from...
6
by: bissatch | last post by:
Hi, How do I go about creating an online WYSIWIG editor where the user can type in a special kind of textarea but the text will appear how it would in a web page (but no html markup present). ...
5
by: Firehawk® | last post by:
Hi, I have a great experience with DB (Oracle and others) and I am using DB2 now. Then, I have few questions: 1. How drop a schema (user) and all objects of this schema, like a Oracle "drop...
6
by: Steve B. | last post by:
Hello everybody In a webpage, I use JS display data from an xml file and a xsl file: var data = new ActiveXObject("Microsoft.XMLDOM"); data.async = false; var dataUrl = "data.aspx";...
2
by: DrBytes | last post by:
Hello All After a perfect compile of my asp app I often (now more freq. than before) get the error below. To make this error go away I can delete the VSWEBCACHE/someapp/obj folder and at times...
6
by: Venkatesh | last post by:
Hello All, I have couple of doubts regarding the concept of on-demand javascript loading using javascript code. I could see on the net different techniques for achieving this - techniques like:...
1
by: Francis | last post by:
Hi, i'm testing ViewState with this page here below: i tried with EnableViewState="false" and with EnableViewState="true", but the produced source code is the same in both cases. I would...
3
by: Kane | last post by:
When you create node 1 you allocate memory and link it Again when you create node 2 you would allocate memory for that node in a different section of the code. Is there more efficient way where I...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.