C++C++17Introduction to C++Learn C++

Learn #pragma Pragma Directive In C++

Learn pragma Pragma Directive In C++

In C++, any line with a leading # is taken as a Preprocessing Directive, unless the # is within a string literal, in a character constant, or embedded in a comment. The initial # can be preceded or followed by whitespace (excluding new lines). If you use the preprocessing directive #pragma, you can set compiler directives in your source code, without interfering with other compilers that also support #pragma. When you create an application in a professional C++ Editor, generally they automatically add some pragma directives to your code. These may be resources and packages for the application. You may use some more directives too.

C++Builder supports many #pragma directives, some of pragma directives support both classic compiler and CLANG compiler. In this article we will give some brief information about these directives. First, lest learn what is is # preprocessor directive,

What is the # preprocessor directive?

Preprocessor directives are usually placed at the beginning of your source code, but they can legally appear at any point in a program. The preprocessor detects preprocessor directives (also known as control lines) and parses the tokens embedded in them.

Any line with a leading # is taken as a preprocessing directive, unless the # is within a string literal, in a character constant, or embedded in a comment. The initial # can be preceded or followed by whitespace (excluding new lines). #include, #define, #pragma are some of these preprocessor directive examples.

Preprocessor directives are usually placed at the beginning of your source code, but they can legally appear at any point in a program. The preprocessor detects preprocessor directives (also known as control lines) and parses the tokens embedded in them.

What is the #pragma pragma directive in C++?

With #pragma, you can set compiler directives in your source code, without interfering with other compilers that also support #pragma. If the compiler doesn’t recognize directive-name, it ignores the #pragma directive without any error or warning message.

Here is the syntax for the #pragma directive,

C++Builder supports many #pragma directives, some of pragma directives support both classic compiler and CLANG compiler, these are;

What is the “#pragma package” pragma directive in C++?

#pragma package controls the initialization order of packages and other aspects related to packages. Here are two syntax examples,

The #pragma package(smart_init) ensures that packaged units are initialized in the order determined by their dependencies (included by default in package source file.) Typically, you would use the #pragma package for .cpp files that are built as packages.Note: Do not use #pragma package(smart_init) in a header file. Doing so can result in compiler error E2177 Redeclaration of #pragma package with different arguments (C++).

This pragma affects the order of initialization of that compilation unit. For units, initialization occurs in the following order:

  1. By their “uses” dependencies, that is, if unitA depends on unitB, unitB must be initialized before unitA.
  2. The link order.
  3. Priority order within the unit.

For regular object files (those not built as units), initialization happens first according to priority order and then link order. Changing the link order of the object files changes the order in which the global object constructors get called.

The following examples show how the initialization differs between units and regular object files.

If you want more examples, please check here https://docwiki.embarcadero.com/RADStudio/Alexandria/en/Pragma_package

What is the “#pragma resource” pragma directive in C++?

#pragma resource emits a comment record that instructs the linker to mark the file as a form unit. This pragma causes the file to be marked as a form unit and requires matching .dfm and header files. All such files are managed by the IDE.

If your form requires any variables, they must be declared immediately after the pragma resource is used. The declarations must be of the form:

What is the “#pragma comment” pragma directive in C++?

#pragma comment syntax, writes a comment record in the object file. This can include linking to a library module. See Auto Linking for more information.

The comment directive lets you write a comment record into an output file. The comment type can be one of the following values:

comment-typeExplanation
exestrThe linker writes a string into an .obj file. Your specified string is placed in the executable file. Such a string is never loaded into memory but can be found in the executable file by use of a suitable file search utility.
libWrites a comment record into an .obj file. A library module that is not specified in the linker’s response file can be specified by the comment LIB directive. The linker includes the library module name specified in the string as the last library. Multiple modules can be named and linked in the order in which they are named.
userThe compiler writes a string into the .obj file. The linker ignores the specified string.

Here is an #pragma comment example,

What is the “#pragma link” pragma directive in C++?

#pragma link instructs the linker to link the file into an executable file. See Auto Linking for more information.

The #pragma link directive instructs the linker to link the specified file into an executable file. Here is the Syntax for this,

Use the path argument to specify a directory. By default, the linker searches for modulename in the local directory and in any path specified by the -L option of the linker. Do not specify the file extension (.ext) of modulename, as long as you are using default file types. The linkers assume the following default values for the file extension (.ext) of modulename:

So if you omit the .ext, then the correct extension is automatically used according to your current target platform.

Here is an example to link a “module1.o” module,

What does the pragma directive “#pragma message” mean in C++?

#pragma message, prints the specified message at compile time. Use #pragma message to specify a user-defined message within your program code.
Here is the Syntax;

The first form requires that the text consist of one or more string constants, and the message must be enclosed in parentheses (this form is compatible with Microsoft C). This form will output the constant contained between the double quotation marks regardless of whether it is a macro or not.

The second form uses the text following the #pragma for the text of the warning message. With this form of the #pragma, any macro references are expanded before the message is displayed.

The third form will output the macro-expanded value of text following the #pragma,if it is #defined. If it is not #defined, you’ll get an ill-formed pragma warning.

User-defined messages are displayed as messages, not warnings. Display of user-defined messages is on by default and can be turned on or off with the Show Messages option. This option corresponds to the compiler’s -wmsg switch.

Messages are only displayed in the IDE if Show general messages is checked on the C++ Project Properties under Project > Options > Project Propertes.

In compilation, the Message window will show this as a warning below,

What is the “#pragma startup” pragma directive in C++?

#pragma startup indicates a function to be run on program startup (before main). #pragma startup and #pragma exit pragmas allow the program to specify function(s) that should be called either upon program startup (before the main function is called) or program exit (just before the program terminates through _exit).

Here is the syntax of #pragma startup,

The specified function name must be a previously declared function taking no arguments and returning void; in other words, it should be declared as:

Then the #pragma would be:

What is the “#pragma exit” pragma directive in C++?

#pragma exit indicates a function to be run on program exit (before _exit).

Here is the syntax of #pragma exit,

How do I specify the priority of different pragma directives in C++?

The optional priority parameter (NN) should be an integer in the range from 64 through 255:

  • The highest priority is 0.
  • Functions with higher priorities are called first at startup and last at exit.
  • If you do not specify a priority, it defaults to 100 for both BCC32 and Clang-enhanced C++ compilers.

Warning: Do not use priority values less than 64 with BCC32. Priorities from 0 through 63 are reserved for RTL startup and shutdown mechanisms. The exception for Clang-enhanced C++ compilers is described in the text below.

What is the Unit Initialization Order in applications built with Clang-enhanced C++ compilers?

Note: Unit initialization order should take priority over #pragma startup order, but this is currently not implemented for Clang-enhanced C++ compilers.

Clang-enhanced C++ compilers do not use unit initialization order, and therefore exit routines that are run without a priority specification close before the main form closes. If you are using Clang-enhanced C++ compilers, you must specify the #pragma exit routine with priority 30 in order to guarantee that the exit routine runs after __ExitVCL (and to match the behavior of BCC32). For example:

C++Builder supports many #pragma directives, some of pragma directives support both classic compiler and CLANG compiler.

The full list can be found in #pragma Directives Overview Index.

Learn pragma Pragma Directive In C++ the C++ Builder Logo

C++ Builder is the easiest and fastest C and C++ IDE for building simple or professional applications on the Windows, MacOS, iOS & Android operating systems. It is also easy for beginners to learn with its wide range of samples, tutorials, help files, and LSP support for code. RAD Studio’s C++ Builder version comes with the award-winning VCL framework for high-performance native Windows apps and the powerful FireMonkey (FMX) framework for cross-platform UIs.

There is a free C++ Builder Community Edition for students, beginners, and startups; it can be downloaded from here. For professional developers, there are Professional, Architect, or Enterprise versions of C++ Builder and there is a trial version you can download from here.

Oh hi there 👋
It’s nice to meet you.

Sign up to receive awesome C++ content in your inbox, every day.

We don’t spam! Read our privacy policy for more info.

About author

Dr. Yilmaz Yoru has 35+ years of coding with more than 30+ programming languages, mostly C++ on Windows, Android, Mac-OS, iOS, Linux, and some other operating systems. He graduated and received his MSc and PhD degrees from the Department of Mechanical Engineering of Eskisehir Osmangazi University. He is the founder and CEO of ESENJA LLC Company. His interests are Programming, Thermodynamics, Fluid Mechanics, Artificial Intelligence, 2D & 3D Designs, and high-end innovations.
Related posts
C++C++17Language FeatureLearn C++

How To Use Skia Images in C++ Builder?

C++C++17Code SnippetGame DevelopmentLanguage FeatureLearn C++

What Is Skia In Modern C++?

C++C++17Learn C++

How To Use Skia in C++ Builder 12?

C++C++17C++20Introduction to C++Language FeatureLearn C++Syntax

Learn How To Use Clamp (std::clamp) In Modern C++ 17 and Beyond