473,387 Members | 1,579 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,387 software developers and data experts.

precompiled headers question

Hi,

I am writing some unmanaged c++ code that would need to be compiled in the
future using compilers other than vc++. I'm using the feature of vc++ "use
precompiled headers", is there going to be any problem if I compile this
code on other compilers? I'm asking this because when I use pch *some* of my
cpp files has following as there first line

#include "StdAfx.h"

but if I dont use pch, I have to change that to

#include "../StdAfx.h"

Regards,

Ab.

Mar 31 '06 #1
8 1460
> I am writing some unmanaged c++ code that would need to be compiled in the
future using compilers other than vc++. I'm using the feature of vc++ "use
precompiled headers", is there going to be any problem if I compile this
code on other compilers? I'm asking this because when I use pch *some* of
my
cpp files has following as there first line

#include "StdAfx.h"

but if I dont use pch, I have to change that to

#include "../StdAfx.h"


Hi,

This will not be a problem. You can enable or disable the use of precompiled
headers in your project configuration properties. You don't have to change
anything to your sources at all.

Going to another compiler will not be a problem in that regard, but you have
to check whether you use microsoft specific features or not. you could /Za
to disable language extensions to insure that you only use ANSI.C++.

Btw GCC 4 also support precompiled headers I believe.

--

Kind regards,
Bruno van Dooren
br**********************@hotmail.com
Remove only "_nos_pam"
Mar 31 '06 #2
headers in your project configuration properties. You don't have to change
anything to your sources at all.
then why do I have to change the "stdafx.h" to "../stdafx.h" when I'm not
using pch?

Should I delete this #include "stdafx.h" from the start of my *cpp* files
when NOT using pch?

Ab.
"Bruno van Dooren" <br**********************@hotmail.com> wrote in message
news:ex**************@TK2MSFTNGP10.phx.gbl...
I am writing some unmanaged c++ code that would need to be compiled in the future using compilers other than vc++. I'm using the feature of vc++ "use precompiled headers", is there going to be any problem if I compile this
code on other compilers? I'm asking this because when I use pch *some* of my
cpp files has following as there first line

#include "StdAfx.h"

but if I dont use pch, I have to change that to

#include "../StdAfx.h"


Hi,

This will not be a problem. You can enable or disable the use of

precompiled headers in your project configuration properties. You don't have to change
anything to your sources at all.

Going to another compiler will not be a problem in that regard, but you have to check whether you use microsoft specific features or not. you could /Za
to disable language extensions to insure that you only use ANSI.C++.

Btw GCC 4 also support precompiled headers I believe.

--

Kind regards,
Bruno van Dooren
br**********************@hotmail.com
Remove only "_nos_pam"

Mar 31 '06 #3
>> headers in your project configuration properties. You don't have to
change
anything to your sources at all.
then why do I have to change the "stdafx.h" to "../stdafx.h" when I'm not
using pch?


You shouldn't have to. Just right click the file, select properties, go to
C++ ->precompiled headers.
there you can change the PCH usage.
You can also do this at project level.

Should I delete this #include "stdafx.h" from the start of my *cpp* files
when NOT using pch?


No, because most times it actually contains other headers.
Also, if the project is configured to use pch, you will get a compiler error
when you don't include it.
Using or not using PCH is a setting. It should not affect your sources at
all.

It is a technique for speeding up compilation times. nothing more.
--

Kind regards,
Bruno van Dooren
br**********************@hotmail.com
Remove only "_nos_pam"
Mar 31 '06 #4
"Abubakar" <em**********@yahoo.com> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...
Hi,

I am writing some unmanaged c++ code that would need to be compiled in the
future using compilers other than vc++. I'm using the feature of vc++ "use
precompiled headers", is there going to be any problem if I compile this
code on other compilers? I'm asking this because when I use pch *some* of
my
cpp files has following as there first line

#include "StdAfx.h"

but if I dont use pch, I have to change that to

#include "../StdAfx.h"


Then you have path problems in your project environment.

When you're compiling with PCH, the compiler completely ignores everything
in the file up through #include "stdafx.h". The fact that you have to
change the path when you don't use PCH to me indicates that the compiler
can't find your stdafx.h in any of the standard places.

What does the directory structure of your project look like? In particular,
where are stdafx.h and the file containing the #include in relation to one
another?

-cd
Mar 31 '06 #5
> What does the directory structure of your project look like? In
particular,
where are stdafx.h and the file containing the #include in relation to one
All my source files are not in the same folder. I have made extra folders to
contain source and headers. For example, there is a folder called Publish,
which contains headers and sources of publishing functionality. When I added
these files to my project as new items, they had there first line as
"#include "stdafx.h"". That was the time when my project settings had pch
enabled. Than at some point I changed project settings to not using pch,
after which when I compiled the project I started getting these errors that
there was no stdafx.h. But I knew that stdafx.h is at the root of the source
tree, so I just changed it to "#include "../stdafx.h"" and it compiled fine,
which also got me thinking why was it (lets say blockpublishing.cpp)
compiling before when it had no stdafx.h on its path. (my lack of cpp
knowledge).

I have other problems as well, related to header files includes. Like I have
a common.h file that has some utility functions and some global variables
that I intend to use at more than one place. Now I include common.h at one
file, lets say one.h and use its functions which works ok, and than at some
other place,lets say two.h, I include the common.h and compiler starts
giving me errors, while linking the source, saying that
"something__proc___here" is already defined in "something.obj". However if I
dont include common.h in two.h, the two.h has no idea of the things (global
functions and variables) that I write, which I assume will me visible to
two.h that are inside the common.h. Now the next thing I'm planning to do is
inlcude my common.h in stdafx.h and see what happens. Also will play with
#pragma once stuff which looks insteresting and I hope its not microsoft
specific.

The purpose I wrote this second para above is:
Having a C# background, I think I really need to read some really good and
detailed article on the problems that a dev can face while working on c++
projects having to do with #include. It would be great if you or anyone else
has some web links on this, or maybe discuss here.
Ab.
"Carl Daniel [VC++ MVP]" <cp*****************************@mvps.org.nospam >
wrote in message news:uC**************@TK2MSFTNGP09.phx.gbl... "Abubakar" <em**********@yahoo.com> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...
Hi,

I am writing some unmanaged c++ code that would need to be compiled in the future using compilers other than vc++. I'm using the feature of vc++ "use precompiled headers", is there going to be any problem if I compile this
code on other compilers? I'm asking this because when I use pch *some* of my
cpp files has following as there first line

#include "StdAfx.h"

but if I dont use pch, I have to change that to

#include "../StdAfx.h"
Then you have path problems in your project environment.

When you're compiling with PCH, the compiler completely ignores everything
in the file up through #include "stdafx.h". The fact that you have to
change the path when you don't use PCH to me indicates that the compiler
can't find your stdafx.h in any of the standard places.

What does the directory structure of your project look like? In

particular, where are stdafx.h and the file containing the #include in relation to one
another?

-cd

Apr 3 '06 #6
> > What does the directory structure of your project look like? In
particular,
where are stdafx.h and the file containing the #include in relation to one
All my source files are not in the same folder. I have made extra folders to
contain source and headers. For example, there is a folder called Publish,
which contains headers and sources of publishing functionality. When I added
these files to my project as new items, they had there first line as
"#include "stdafx.h"". That was the time when my project settings had pch
enabled. Than at some point I changed project settings to not using pch,
after which when I compiled the project I started getting these errors that
there was no stdafx.h. But I knew that stdafx.h is at the root of the source
tree, so I just changed it to "#include "../stdafx.h"" and it compiled fine,
which also got me thinking why was it (lets say blockpublishing.cpp)
compiling before when it had no stdafx.h on its path. (my lack of cpp
knowledge).


That is because the compiler will look for the PCH instead of trying to load
the real include file.

if you separate include and source files you have to add additional include
directories in your project settings. otherwise you have to explicitly tell
the compiler where those files are (by using ../..) and that removes
flexibility from your project layout.

I have other problems as well, related to header files includes. Like I have
a common.h file that has some utility functions and some global variables
that I intend to use at more than one place. Now I include common.h at one
file, lets say one.h and use its functions which works ok, and than at some
other place,lets say two.h, I include the common.h and compiler starts
giving me errors, while linking the source, saying that
"something__proc___here" is already defined in "something.obj". However if I
dont include common.h in two.h, the two.h has no idea of the things (global
functions and variables) that I write, which I assume will me visible to
two.h that are inside the common.h. Now the next thing I'm planning to do is
do it like this:
//common.h
extern int g_Global;
extern int MyFunction(void);

//common.cpp
#include "common.h"
int g_Global;
int MyFunction(void)
{
//...
}

that way there is only 1 definition, and you can use them by simply
including common.h
inlcude my common.h in stdafx.h and see what happens. Also will play with
#pragma once stuff which looks insteresting and I hope its not microsoft
specific.
another thing you'll see often is this:

#ifndef __SOME_INCLUDE_GUARD__
#define__SOME_INCLUDE_GUARD__

//declarations here

#endif

The purpose I wrote this second para above is:
Having a C# background, I think I really need to read some really good and
detailed article on the problems that a dev can face while working on c++
projects having to do with #include. It would be great if you or anyone else
has some web links on this, or maybe discuss here.


to find out if something is MSFT specific, find the topic in the MSDN help
collection. it is always mentioned if something is ANSI or microsoft specific.

www.codeproject.com is always a good place to start when looking for info.
if you are serious about C++ you should buy a good book. there are several.
my favorite is still 'the C++ programming language' by stroustrub
it can be a bit dull at times, but it is complete.

if you have specific questions you can always ask them here also.

--

Kind regards,
Bruno.
br**********************@hotmail.com
Remove only "_nos_pam"
Apr 3 '06 #7

"Bruno van Dooren" <br**********************@hotmail.com> wrote in message
news:01**********************************@microsof t.com...
What does the directory structure of your project look like? In particular,
where are stdafx.h and the file containing the #include in relation to
one
All my source files are not in the same folder. I have made extra folders to contain source and headers. For example, there is a folder called Publish, which contains headers and sources of publishing functionality. When I added these files to my project as new items, they had there first line as
"#include "stdafx.h"". That was the time when my project settings had pch enabled. Than at some point I changed project settings to not using pch,
after which when I compiled the project I started getting these errors that there was no stdafx.h. But I knew that stdafx.h is at the root of the source tree, so I just changed it to "#include "../stdafx.h"" and it compiled fine, which also got me thinking why was it (lets say blockpublishing.cpp)
compiling before when it had no stdafx.h on its path. (my lack of cpp
knowledge).


That is because the compiler will look for the PCH instead of trying to

load the real include file.

if you separate include and source files you have to add additional include directories in your project settings. otherwise you have to explicitly tell the compiler where those files are (by using ../..) and that removes
flexibility from your project layout.

I have other problems as well, related to header files includes. Like I have a common.h file that has some utility functions and some global variables that I intend to use at more than one place. Now I include common.h at one file, lets say one.h and use its functions which works ok, and than at some other place,lets say two.h, I include the common.h and compiler starts
giving me errors, while linking the source, saying that
"something__proc___here" is already defined in "something.obj". However if I dont include common.h in two.h, the two.h has no idea of the things (global functions and variables) that I write, which I assume will me visible to
two.h that are inside the common.h. Now the next thing I'm planning to do is

do it like this:
//common.h
extern int g_Global;
extern int MyFunction(void);

//common.cpp
#include "common.h"
int g_Global;
int MyFunction(void)
{
//...
}

that way there is only 1 definition, and you can use them by simply
including common.h
inlcude my common.h in stdafx.h and see what happens. Also will play
with #pragma once stuff which looks insteresting and I hope its not microsoft
specific.


another thing you'll see often is this:

#ifndef __SOME_INCLUDE_GUARD__
#define__SOME_INCLUDE_GUARD__

//declarations here

#endif

The purpose I wrote this second para above is:
Having a C# background, I think I really need to read some really good and detailed article on the problems that a dev can face while working on c++ projects having to do with #include. It would be great if you or anyone else has some web links on this, or maybe discuss here.


to find out if something is MSFT specific, find the topic in the MSDN help
collection. it is always mentioned if something is ANSI or microsoft

specific.
www.codeproject.com is always a good place to start when looking for info.
if you are serious about C++ you should buy a good book. there are several. my favorite is still 'the C++ programming language' by stroustrub
it can be a bit dull at times, but it is complete.

if you have specific questions you can always ask them here also.

--

Kind regards,
Bruno.
br**********************@hotmail.com
Remove only "_nos_pam"

Apr 4 '06 #8
> do it like this:
//common.h
extern int g_Global;
extern int MyFunction(void);
This was very helpful.

Thanks for all other tips as well. My #include problems are settling slowly
n slowly :-)

Regards,

Abubakar.
"Bruno van Dooren" <br**********************@hotmail.com> wrote in message
news:01**********************************@microsof t.com...
What does the directory structure of your project look like? In

particular,
where are stdafx.h and the file containing the #include in relation to
one
All my source files are not in the same folder. I have made extra folders to contain source and headers. For example, there is a folder called Publish, which contains headers and sources of publishing functionality. When I added these files to my project as new items, they had there first line as
"#include "stdafx.h"". That was the time when my project settings had pch enabled. Than at some point I changed project settings to not using pch,
after which when I compiled the project I started getting these errors that there was no stdafx.h. But I knew that stdafx.h is at the root of the source tree, so I just changed it to "#include "../stdafx.h"" and it compiled fine, which also got me thinking why was it (lets say blockpublishing.cpp)
compiling before when it had no stdafx.h on its path. (my lack of cpp
knowledge).


That is because the compiler will look for the PCH instead of trying to

load the real include file.

if you separate include and source files you have to add additional include directories in your project settings. otherwise you have to explicitly tell the compiler where those files are (by using ../..) and that removes
flexibility from your project layout.

I have other problems as well, related to header files includes. Like I have a common.h file that has some utility functions and some global variables that I intend to use at more than one place. Now I include common.h at one file, lets say one.h and use its functions which works ok, and than at some other place,lets say two.h, I include the common.h and compiler starts
giving me errors, while linking the source, saying that
"something__proc___here" is already defined in "something.obj". However if I dont include common.h in two.h, the two.h has no idea of the things (global functions and variables) that I write, which I assume will me visible to
two.h that are inside the common.h. Now the next thing I'm planning to do is

do it like this:
//common.h
extern int g_Global;
extern int MyFunction(void);

//common.cpp
#include "common.h"
int g_Global;
int MyFunction(void)
{
//...
}

that way there is only 1 definition, and you can use them by simply
including common.h
inlcude my common.h in stdafx.h and see what happens. Also will play
with #pragma once stuff which looks insteresting and I hope its not microsoft
specific.


another thing you'll see often is this:

#ifndef __SOME_INCLUDE_GUARD__
#define__SOME_INCLUDE_GUARD__

//declarations here

#endif

The purpose I wrote this second para above is:
Having a C# background, I think I really need to read some really good and detailed article on the problems that a dev can face while working on c++ projects having to do with #include. It would be great if you or anyone else has some web links on this, or maybe discuss here.


to find out if something is MSFT specific, find the topic in the MSDN help
collection. it is always mentioned if something is ANSI or microsoft

specific.
www.codeproject.com is always a good place to start when looking for info.
if you are serious about C++ you should buy a good book. there are several. my favorite is still 'the C++ programming language' by stroustrub
it can be a bit dull at times, but it is complete.

if you have specific questions you can always ask them here also.

--

Kind regards,
Bruno.
br**********************@hotmail.com
Remove only "_nos_pam"

Apr 4 '06 #9

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

Similar topics

6
by: Asfand Yar Qazi | last post by:
Hi, Now that GCC 3.4 has precompiled headers, I'm thinking I can stop using pimpls to speed up development time, as it may make life easier (declaring pimpls takes a long time...) What are...
1
by: JoeS | last post by:
Is there anyway to share a single pch file between projects in VC 7.0? I have 300+ projects each of which creates its own pch. All projects include the exact same header files in the precompiled...
4
by: Andrew Ward | last post by:
Hi All, I was wondering if it is possible to use precompiled headers without having to include a <stdafx.h> or whatever in every source file. My problem is that I have a project that makes heavy...
0
by: Bruno van Dooren | last post by:
Hi, I am working on a dll that exports COM interfaces, and i am having some troubles with the use of precompiled headers. the project compiles always, but if i use /Yu (default: use precompiled...
20
by: Bonj | last post by:
Is it possible to avoid using precompiled headers on files that don't #include "stdafx.h". I have an ATL project,which has got a lot of ATL #includes in its stdafx.h. I now need to add some .c...
1
by: dt | last post by:
Having troubles with my program and i believe it has something to do with my project settings for precompiled headers. This is what i have: my main cpp file, vector.h/cpp and polygon.h/cpp. ...
0
by: citizenkahn | last post by:
I read an article entitled "Sharing precompiled headers between projects" on this group. I am in the same situation as the requesting author, but the solution has not worked for me. Here is my...
1
by: Alvo von Cossel I | last post by:
yo, i have a simple hello world win32 console application. it should work but there is an error. here is the most important part of the error: have you forgotten to add #include <stdfx.h> to...
3
by: Kevin Frey | last post by:
I am working on a test migration of our project to Visual Studio 2005 Beta 2 as a precursor to the availability of the full release of VS2005. The most onerous problem so far concerns the...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
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
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
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...

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.