1833780 Members
2306 Online
110063 Solutions
New Discussion

Recompiling ;o)

 
Michael Geist
Advisor

Recompiling ;o)

Hi together,

I have a C++ program which I want to recompile. It's compiled with C++ Developer Studio 6.0. How can I do this and where can I get documentation about?

Thanks & regards
Michael
4 REPLIES 4
Steve Steel
Honored Contributor

Re: Recompiling ;o)

Hi


I presume you mean

Using Microsoft Visual C++ Developer Studio


Go to www.webplaces.com

Use sentence above in google.


Steve Steel
If you want truly to understand something, try to change it. (Kurt Lewin)
H.Merijn Brand (procura
Honored Contributor

Re: Recompiling ;o)

If it's for HP-UX and you do not have the HP C++ compiler, you can get the (precompiled) GNU version here

http://h21007.www2.hp.com/dspp/tech/tech_TechSoftwareDetailPage_IDX/1,1703,547,00.html
Enjoy, Have FUN! H.Merijn
Michael Geist
Advisor

Re: Recompiling ;o)

Hi again ;o(
it's very difficult to find something about recompiling of a program which I don't have written myself. I want to recompile a software which I use on a server here and I won't get the source code.
Please help ;o)
Michael
Don Morris_1
Honored Contributor

Re: Recompiling ;o)

Apologies if I've misunderstood your statement:

If you don't have the source files you can not recompile a program. If you have object files you could re-link it, but I don't get the impression that's what you want to do.

Long story short - compilers can not recompile based on the finished binary. You need the source.

Don