a program that processes input data to produce output that is used as input to another program.
5
votes
1answer
111 views
C code preprocessing in Perl
I work on the C code parser in Perl.
At the moment I need to pre-process the code.
Implementation of the pre-processing seems to be a lot of work, so I am looking for a script or library that will ...
1
vote
4answers
64 views
Is there a way to both check a macro is defined and it equals a certain value at the same time
I regularly use object-like preprocessor macros as boolean flags in C code to turn on and off sections of code.
For example
#define DEBUG_PRINT 1
And then use it like
#if(DEBUG_PRINT == 1)
...
3
votes
3answers
72 views
Are C preprocessor statements a part of the C language?
I recall a claim made by one of my professors in an introductory C course. He stated that the #define preprocessor command enables a programmer to create a constant for use in later code, and that the ...
0
votes
1answer
27 views
distinguish between NDK build and Android build
I have a native library I build that needs to be build in the Android build, but can also be built using the NDK.
How can I distinguish using the preprocessor between NDK build and Android build.
...
1
vote
1answer
23 views
XSLT. I need to preprocess XML into other XML before processing via XSLT into HTML. How is this done?
Good day,
My XSLT transforms XLM pages into HTML pages. Now I am stuck with a problem, that seems not trivial to me. I would appreciate a pointer into the right direction.
I want to reduce the ...
3
votes
4answers
82 views
How do I write a recursive for-loop “repeat” macro to generate C code with the CPP preprocessor?
I want to force the preprocessor to do some automatic code generation for me. I don't need much: just a simple for-loop that contains another for-loop.[1]
I've read all that I can about macro ...
0
votes
2answers
41 views
How to @extend from another sass file, or how to achieve OOSASS?
My question is actually broader than the title says. This is just where I am running into a snag with my idea, but I am open to all sorts of solutions. Let me explain my overall goal.
I like what CSS ...
0
votes
2answers
37 views
Check if a file is in the include path
In C++ is it possible to check at compile time whether a file with the given name is withing the include path.
I am trying to set up a library which takes compiler settings from a user created file ...
2
votes
6answers
97 views
Is #ifdef MACRO equivalent to a comment
Assuming that MACRO is not defined, are these equivalent
#ifdef MACRO
Not valid C or C++ code
#endif
/*
Not valid C or C++ code
*/
In GCC 4.7.1, it seems to be equivalent but are there ...
2
votes
2answers
70 views
C compiler preprocessor output
C compilers supports generating the preprocessor output file with .i extension.
As far as I know, this is true for Microsoft (Visual Studio), ARM, Keil and some GNU compilers.
They usually use the ...
2
votes
1answer
28 views
Get architecture type (ABI) to C preprocessor for Android NDK
I'm trying to control my C code in an Android NDK project depending on the selected ABI library.
As a start, I want the NDK library method to answer, with a string, what ABI that is used. I did a few ...
3
votes
3answers
75 views
c++ #define variable parameter function
I have a CPU sensitive application and want to minimize function calls. I want to write something like:
#ifdef condition
#define f(a,b) ff(a,b)
#define f(a) ff(a)
#endif
...
4
votes
1answer
137 views
Where is it legal to specify a preprocessor directive?
I'm trying to write a state machine that slurps a source file and splits it into sections that are either the compiler's business or the preprocessor's business. Not a deep traversal, I'm just ...
0
votes
0answers
16 views
Compiling binutils: “lib/cpp” fails sanity check on Mac? What should I do next?
I'm trying to locally compile binutils on my Mac, but my C preprocessor keeps failing the sanity check when I run make. I've tried using the three executables on the system as the preprocessor: cpp, ...
3
votes
5answers
70 views
Advantages of conditional-preprocessor over conditional statements
I have never worked with #if, #ifdef, #ifndef, #else, #elif and #endif.
As I was going through some source-codes, I found an extensive use of these directives.
Did some reading on ...
0
votes
1answer
48 views
CSS Document Generator that works with preprocessors
I am currently looking at CSS Preprocessors in particular LESS and Sass (currently leaning towards Sass). However, I'm also looking at CSS Document Generators too (like KSS, CSS_Doc, StyleDocco etc.). ...
0
votes
1answer
20 views
Compass grid mixin generating over 16,000 characters of CSS
Today I installed Compass and thought I'd try to generate a grid background to help me line things up.
I checked the docs ...
3
votes
2answers
70 views
C Compiler Optimization - Macros Involving Arithmetic
I am debating an optimization issue with a friend, and need some assistance tracking down both the answer to this problem, and hopefully some official documentation I could read further.
I am told ...
-1
votes
1answer
13 views
Using sass --watch with directories
In the Sass manual, it says sass --watch takes 2 arguments: either input_file and output_file, or input_directory and output_directory.
You'll notice when watching files only, we get to explicitly ...
0
votes
3answers
67 views
Avoid code duplication in read/write functions using preprocessor
If I have a pair of long functions:
#include <stdio.h>
#include <stdlib.h>
void writeData()
{
FILE *fp; int someVar1 = 1; int someVar2 = 2; int someVar3 = 3;
fp = ...
0
votes
1answer
30 views
Compile a single CS project in a solution twice, one with a preprocessor constant defined and one without it
The idea is mainly to make my service read-only (due to security reasons) by checking whether a preprocessor constant is defined or not. I will have
#if READONLY
throw new ...
0
votes
1answer
37 views
Change #define argument
I'd wrote a preprocessor define statement for a getter method
#define GetNSStringDefaultForPropertyWithNameAndKey(propertyName, propertyKey) - (NSString *)propertyName { return [[NSUserDefaults ...
0
votes
1answer
52 views
Convert C/C++ #if and #elif directive to C#
I'm trying to convert C/C++ code to C# programatically. I have encountered a problem when converting preprocessor directives, especially with #if and #elif since the preprocessor for C/C++ accepts ...
3
votes
2answers
53 views
Keep comments in preprocessor i file
We want to use the preprocessor output file (.i file ) for further use, especially the comments.
For that, we use the /PREPRINT (or /PP) command line switch.
The problem is that the KEIL compiler ...
1
vote
2answers
48 views
Is there a way to use a preprocessor macro inside of another function-like macro?
I found a neat Clang-specific feature that lets you know if a header exists before actually including it (__has_include). I was trying to come up with my own macro to do something like the following:
...
1
vote
1answer
54 views
Can I use Visual Studio debugger within #define functions?
I am using Visual Studio 2010 (writing C++) and have isolated an exception coming from a call to a #define function. The defined function is a bit complex and I would like to be able to step through ...
0
votes
2answers
40 views
Using typeof to convert a variable declaration to a type?
Currently, I have a scenario much like this:
#define my_macro(var) __builtin_types_compatible_p(typeof(var), foo) ? do_something : do_something_else
However, inadvertently the macro gets passed ...
0
votes
1answer
27 views
how to fix this stringise error
#define GETSTRING(s) return #s
enum a_type { SMALL, MEDIUM, LARGE };
const char* get_data(a_type a) { return GETSTRING(a); }
int main() {
a_type at = SMALL;
const char* s = get_data(at);
...
2
votes
2answers
36 views
Strange syntax error C2143 in Visual only (missing ';' before 'type')
I'm getting a strange compilation error for a C code in MSVC only. More precisely :
error C2143: syntax error : missing ';' before 'type'
C2143 is a fairly generic error, and there are myriad of ...
8
votes
3answers
126 views
Why can't we use the preprocessor to create custom-delimeted strings?
I was playing around a bit with the C preprocessor, when something which seemed so simple failed:
#define STR_START "
#define STR_END "
int puts(const char *);
int main() {
puts(STR_START hello ...
1
vote
1answer
53 views
Variadic macro with no arguments for its variadic parameter
Is it legal to invoke a variadic macro M with no arguments for its variadic parameter?
The relevant standard quote is [cpp.replace]/4:
If the identifier-list in the macro definition does not end ...
4
votes
3answers
132 views
Check if number is prime during compilation in C++
I have a template class that takes an unsigned integer as template parameter, but I have to make sure that number is a prime. I can check it in the constructor, for instance, but it would be better to ...
1
vote
2answers
78 views
How to detect Apportable with preprocessor flags?
This is related to my other question
When I build my project with Apportable, it assumes Linux/Android platform. I think these preprocessor flags are set.
__linux
ANDROID
But, my source code ...
1
vote
2answers
11 views
preprocessor directive with hash
#define f(g,g2) g##g2
main()
{
int var12=100;
printf("%d",f(var,12));
}
This code gives output 100, but if the preprocessor is implemented, printf will be rewritten as,
printf("%d",var##12);
Then, ...
-1
votes
3answers
90 views
string #define returns randomly integer
As far as I know #define is just a string replacement and it's not a variable, so it doesn't have any memory address or something.
Suppose this code:
#include <stdio.h>
#define ONE "a"
...
0
votes
1answer
62 views
In C, is there a better way to calculate uncertainty values?
What I've been doing is using a #define UNC (uncertainty) to toggle on and off the functionality for calculating x (the value) and dx (the uncertainty). It works pretty well, but it's not easy to read ...
7
votes
5answers
253 views
what's this C++ macro meaning?
I can't figure out what this macro means:
#define DECLARE_HANDLE(n) typedef struct n##__{int i;}*n
DECLARE_HANDLE(HWND);
I have learned from The C Program that
"##" meaning connect the ...
0
votes
0answers
8 views
Getting define values
Is it possible to get the actual values of defines used by preprocessor during the project build aswell as macro final definitions?
This is the question connected with big projects for instance ...
1
vote
2answers
76 views
Preprocessor invalid preprocessor token error
I am reading a book to learn C. In that book is the following example code giving a preprocessor error with gcc (Debian 4.7.2-4) 4.7.2. The error is
file.c: In function ‘main’:
file.c:16:14: error: ...
-2
votes
1answer
32 views
Check for a Variable in Sass mixin & print it if it's defined
I'm creating a Sass mixin with 3 arguments one of them is optional & I want to print it out if it's passed otherwise I don't want to print anything.
Here is how my mixin looks like:
@mixin ...
1
vote
1answer
56 views
Cross Compiling Samba 4.0.5 i686 to MIPS
I've been assigned to cross compile samba 4.0.5 from i686 to MIPS in order to port it on board later. I'm compiling in ubuntu 13.04 .
The error I get is:
lib/sysquotas_4A.c: In function ...
2
votes
1answer
69 views
Global variable vs macro expansion for string literal
I'm trying to understand some of the intricacies the preprocessor and of the C compiler (specifically, the gnu gcc) and string literals. Is it more efficient to just assign a global variable for a ...
1
vote
1answer
27 views
Solaris and Preprocessor Macros
Would someone post the results of cpp -dM < /dev/null from a Solaris 10 or above system?
I'm having trouble locating what preprocessor macros are typically defined. Solaris documentation does not ...
0
votes
1answer
42 views
Preprocessing via express middleware or through build system
Is preprocessing static resources through middleware (using express) a good idea for production environments? From my understanding the middleware stack is run, in series, for every request. Wouldn't ...
0
votes
1answer
78 views
Concatenate & minify directory of JS files into one JS file with Guard and UglifyJS
I have a folder of JS plugins that i would like to concatenate and minify into a plugins.js file using Guard and UglifyJS
Here's what I have in my Guardfile so far
guard 'uglify', :input => ...
6
votes
3answers
66 views
Combining two #defined symbols in C++ preprocessor
I want to do:
#define VERSION XY123
#define PRODUCT MyApplication_VERSION
so that PRODUCT is actually MyApplication_XY123. I have tried playing with the merge operator ## but with limited ...
2
votes
1answer
48 views
Are #include directives processed prior to macro expansion regardless of their location within a file?
I came across some code the other day that was similar to the following (the following has been over-simplified for the sake of brevity):
config.h
#ifndef __CONFIG__
#define __CONFIG__
#define ...
0
votes
2answers
51 views
Generate a string based upon a class template's typename?
What I'd like to be able to do...
I have a templated class which sets up a (named) shared memory pool based upon the type of object passed as the type parameter. I was wondering if, possibly through ...
2
votes
2answers
77 views
How to use the #error directive - C++
I'm creating a self initializing arrays class in C++ and i'm wondering how i'd throw an error not an exception if a user were to try and allocate more than 0x7fffffff bytes.
Similar to where:
error ...
1
vote
2answers
34 views
Defining const in precompiled header — How to avoid duplication
So I want to use CocoaLumberjack and am trying to insert the ddLogLevel const in my .pch file:
#if DEBUG
static const int ddLogLevel = LOG_LEVEL_VERBOSE;
#else
static const int ddLogLevel = ...







