The #pragma directives offer a way for each compiler to offer machine- and operating system-specific features while retaining overall compatibility with the C and C++ languages.

learn more… | top users | synonyms

0
votes
1answer
8 views

Is is possible to disable this warning in clang? warning: #pragma once in main file

warning: #pragma once in main file We're running our headers through clang to get a partial AST. Is it possible to disable that warning? I've had little success on my own. Cheers / kyle
-1
votes
4answers
44 views

Subcategorize methods using #pragma [duplicate]

I'm working on an iOS Project, in which I'm using #pragma mark for arranging my methods according to it's category. My issue is, in some categories there are sub-categories. How can I arrange it like ...
0
votes
1answer
63 views

Why “pragma GCC diagnostic push” pop warning in GCC/C++?

#pragma GCC diagnostic push it pop: warning: expected [error|warning|ignored] after â#pragma GCC diagnosticâ Why? I use GCC in Linux. I have one question, if I can't use pop/push, if the ignore ...
0
votes
1answer
51 views

how to disable the warning (seems not one common warning )for this code sample in c++/gcc compile?

how to disable the warning for this code sample in c++/gcc compile? the warning seems it isn't a common warning. So how to disable it? is it similar with followed code? #pragma GCC diagnostic push ...
1
vote
3answers
88 views

How do I disable Unused Variable warnings in Eclipse in minGW?

How can I disable the following warning in C++ in minGW? warning: unused variable 'x' [-Wunused-variable] In Eclipse CDT, I can't locate the warning number: ../src/subfolder/ClassTwo.cpp:20:8: ...
1
vote
1answer
13 views

Clarification regarding journal_size_limit in SQLite

If I set journal_size_limit = 67110000 (64 MiB) will I be able to: work with / commit transactions over that value (somewhat unlikely) be able to successfully perform a VACUUM (even if the database ...
0
votes
1answer
37 views

Where to put #prama warning preprocessor directive to suppress warnings?

I have many header files and source codes for my project in C++. I wanted to suppress warnings, therefore, came to know about #pragma warning preprocessor. I am able to suppress one kind of warning, ...
0
votes
2answers
54 views

How can I use macro expansion for the first identifier of a pragma?

If I wanted to define the first identifier of a pragma how would I do this? For example, I need something like this to work as an openmp pragma: #define FOO omp #pragma FOO parallel So I need this ...
1
vote
3answers
93 views

Can the pre-processor directives like #include be placed only at the top of the program code?

I have used the #pragma directive inside functions without error or warning(especially #pragma pack()).But the following code shows the warning incompatible implicit declaration of built-in function ...
1
vote
1answer
17 views

In sqlite3, is there a foreign_key integrity check?

I'm just teaching myself sqlite and so I was surprised to see my foreign_key constraint not working when I was able to delete a parent entry. I then learned after reading more that the pragma for ...
0
votes
1answer
46 views

Relative path with #pragma comment(lib)

Using Visual Studio 2010, I'd like to specify a path in a #pragma comment(lib) relative to the cpp file including it. I tried #pragma comment(lib, __FILE__"\\..\\foo.lib") in foo.cpp and it seems ...
1
vote
1answer
29 views

Splitting a sub-thread into new sub-threads (Openmp)

I have a question about multi-threading (Openmp and C-code). I'm going to perform a search after 16 different words in a given text file. The way to do it is to make a for-loop that runs through an ...
4
votes
1answer
103 views

Port some code to GCC, have some problems with #pragma directives

I'm trying to compile this code with GCC and I have these #pragma directives that I'm trying to convert to GCC understandable instructions and I just can't figure out how: #pragma section(".CRT$XCA", ...
0
votes
1answer
40 views

Debugging a DLL that uses __stdcall and pragma linker

I want to debug a DLL. This DLL exports some functions and voids: This is the header: #ifdef CODEC_EXPORTS #define CODEC_API __declspec(dllexport) #else #define CODEC_API __declspec(dllimport) ...
2
votes
1answer
62 views

#pragma warning - file specific?

Simple question, but I can't seem to find an answer in any reference material. If I have a #pragma warning() directive, does the compiler only define that for the current file? Or is it propagated ...
0
votes
2answers
53 views

How to generate user-defined warning messages in VB.NET

I would like to generate a user-defined warning message in VB.NET as is done in C# (see below): How to use the #pragma message to generate user-defined warning messages in Visual C++ Is this ...
1
vote
3answers
181 views

#pragma warning disable & restore

I Used to c# to create a First Project. I got Many Warning errors and All these Warning error are to be singel Error(Internal compiler error. See the console log for more information.) For Reducing ...
0
votes
0answers
114 views

glut.h error when testing glut in code blocks

When trying to build a project using glut I get an error. Not in the main.cpp but rather in the glut.h I've included. #pragma comment (lib, "winmm.lib") /* link with Windows MultiMedia lib */ ...
4
votes
1answer
81 views

openMP conditional pragma “if else”

I have a for loop that can be executed using schedule(static) or schedule(dynamic, 10) depending on a condition. Currently, My code is not DRY (Don't repeat yourself) enough and to accommodate the ...
10
votes
2answers
189 views

#pragma mark not listing the first group name

I'm using #pragma mark for grouping my methods under certain categories. But the issue is in Xcode 4 my first category is not displaying. My code looks like: @interface MyClass : NSObject #pragma ...
0
votes
1answer
87 views

Gwan include scripts

I am currently trying to import some libraries into my Gwan C script. I have read through the manual and am using #pragma include to include the folder that my libraries are in, and then use #pragma ...
0
votes
1answer
34 views

Stop Firefox from adding pragma and cache headers to XMLHTTP Req?

I've written an extension that sends XHR POSTs, but two headers are being added that I don't want: Pragma: no-cache Cache-Control: no-cache I've read that someone else with this problem had turned ...
3
votes
1answer
191 views

#pragma mark equivalent in Visual Studio for C++?

Is there a Visual Studio preprocessor equivalent of #pragma mark found in XCode? Here's why I ask: This is on Windows. This is on Mac. I know of #region in C#, but nothing of similar ...
3
votes
3answers
78 views

Is #pragma directive compiler dependent?

I know and I've used #pragma startup and #pragma exit before but when I execute the following code it outputs only In main. Can anyone tell me what's happening here? #include<stdio.h> #pragma ...
0
votes
4answers
179 views

Convert C structure into unsigned char

I have a function UartSend() to send data to network through uart. it takes argument unsigned char and an integer UartSend(unsigned char *psend_data,int length); i want to send a structure through ...
1
vote
0answers
162 views

Confused by “#pragma GCC diagnostic push/pop”

I'm trying to use "#pragma GCC diagnostic push" and "#pragma GCC diagnostic pop" to turn warnings on for my code and then back off (for example, once the header ends). But the warnings are not getting ...
0
votes
0answers
46 views

What pragmas are supported by llvm based nvcc?

As per this exchange from the mid 2010s the llvm compiler did not support per-loop pramgas. As per this exchange from the mid 2011s and the documentation here, getting llvm to unroll a for-loop ...
0
votes
0answers
62 views

N-Queen parallelize it and speed up code with omp

I am implementing the n queens problem, I would like to use omp so I can paralelize the problem, I came with this but in some parts I am in doubt if this would be the best approach. I am using two ...
0
votes
1answer
59 views

How can I use pragma weak with namespaced functions?

This works: test1.h namespace funcs { extern "C" { void a(); void b(); void c(); } } test1.cpp namespace funcs { void (*all[])() = {a, b, c}; } extern "C" void hang() { while ...
1
vote
2answers
427 views

Xcode - implementing a method, also be implemented by its primary class

I'm using Xcode 4.5. In my latest Xcode project, I have this warning pop up when i build/compile my program: Category is implementing a method which will also be implemented by its primary class ...
0
votes
1answer
161 views

Using #define to create an array in C

I have a header file declaring: #pragma char PORTC @ 0x07 #pragma char PORTD @ 0x08 #pragma char PORTE @ 0x09 where I access ports on my PIC-processor by writing PORTC.0, ...
2
votes
1answer
87 views

Struct packing in GCC on 32-bit doesn't work?

I have inherited some third-party code in a project. It's comprised of a header file and a binary library without sources, so I cannot just recompile it with different settings. The header uses a ...
-1
votes
3answers
152 views

How to force return value optimization in msvc

I have a function in a class that I want the compiler to use NRVO on...all the time...even in debug mode. Is there a pragma for this? Here is my class that works great in "release" mode: template ...
1
vote
1answer
60 views

#pragma warning(default: all)

Is there an easy way to accomplish this? #pragma warning(default: all) This isn't valid as it is; I can give a specific warning number instead of all and that will restore that one warning to ...
1
vote
2answers
128 views

g-wan: building library outside of /csp, and g++ compilation problems

I am giving Gwan a whirl. Having made it through example code, I started a small project with more than one source file. I now have two problems: I got a linking error at server startup: Linking ...
0
votes
2answers
93 views

How to disable a specific IBM XL C++ compiler warning?

Given tmp.cpp: #include <stdio.h> #pragma report(disable, CCN8826) int main(int argc, const char *argv[]) { const char * hi = "hi\n"; printf(hi); return 0; } Despite I use ...
3
votes
1answer
77 views

How do I define a macro with multiple pragmas for Clang?

I'd like to add some macros to ease (un)setting a specific warning around routines that we are deprecating internally. I'd like to turn this: #pragma clang diagnostic push #pragma clang diagnostic ...
0
votes
2answers
134 views

How to make this code thread safe with openMP?

The schematic code shown below works fine if I remove the #pragma omp parallel for, but with this in place the code compiles but then upon executing the binary I get errors like *** glibc detected ...
1
vote
1answer
250 views

Disable -Werror via pragma clang diagnostic

Using -Werror to treat all warning as errors, I don't want to suppress a deprecated declaration warning : #pragma clang diagnostic push #pragma clang diagnostic ignore "-Wdeprecated-declarations" ...
1
vote
1answer
233 views

Android SQLcipher PRAGMA problems

Hey guys I am having a some problems with SQLcipher db for android The documentation is not too descriptive so I could not figure it out. I am trying to modify the default number of iterations on ...
0
votes
1answer
536 views

Is there a way to unroll loops in an AMD OpenCL kernel with the compiler?

I'm trying to assess the performance differences between OpenCL for AMD and Nvidia GPUs. I have a kernel which performs matrix-vector multiplication. I'm running the kernel on two different systems at ...
2
votes
2answers
123 views

Finding the line number of a function in Haskell

I am trying to create a Haskell program which draws some simple 2d shapes to screen, but when you hover over each shape, it prints the line of source code where the shape was created. In order to do ...
15
votes
2answers
439 views

Should I still use #include guards AND #pragma once?

http://en.wikipedia.org/wiki/Pragma_once Should I still use include guards when all of these compilers support #pragma once? A lot of responses on stack overflow say to use both for compatibility, ...
3
votes
1answer
87 views

Is std::polar thread safe?

Is the function std::polar() thread safe? I would like to call the #pragma directive on a for that uses it inside.
0
votes
1answer
250 views

ios Facebook SDK Pragma, GCC error

I have to implement a Facebook sharing method... I watched the video, read a couple of tutors, etc... 1: I registered my app, downloaded the sdk, the samples are running fine 2: when i drag and drop ...
3
votes
5answers
334 views

How portable is code with #pragma optimize?

How portable is code that uses #pragma optimize? Do most compilers support it and how complete is the support for this #pragma?
2
votes
1answer
211 views

Is it possible to have a hierarchy of “#pragma mark”?

I use #pragma mark - Description frequently to organize my methods in Xcode. However, I find that sometimes I need to categories and subcategories for my methods, like this: Public Methods ...
1
vote
2answers
61 views

Make gcc syntax check insure a NULL is passed as last parameter in function call with variable arguments

You know how in gcc, you can make it do syntax checking on printf-style calls, to make sure that the argument list is actually correct for the call? I want to do something similar. I have some ...
0
votes
0answers
204 views

Suppress -Wunknown-pragmas warning in GCC

I try to ignore warnings coming from some 3rd party header files like this: #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wunknown-pragmas" #pragma GCC diagnostic ignored "-Wreorder" ...
1
vote
1answer
205 views

Are there any preprocessor directives that control loop unrolling?

Furthermore, how does the compiler determine the extent to unroll a loop, assuming all operations in the loop are completely independent of other iterations.

1 2 3 4 5