preprocess
preprocess copied to clipboard
C/C++ preprocessor-like tool for a range of languages (i.e., #ifdef, #ifndef, #if-else, #include, etc. for Python, LaTeX, Bash, JavaScript, "whatever").
I'm trying to install on a Mac (running OS X 10.12.5) under Python 3. Installation under Python 2 succeds, but with Python 3 I get the following output: ``` »...
This patch allows definitions based on previous definitions: ``` #define NARWHAL 0 #define UNICORN 1 #define RHINOCEROS 2 #define ANIMAL UNICORN ``` Previously, the fourth definition's value would be a...
Hi, 2 tests failed by compiling latest Preprocess-1.2.2 under Python3: http://fpaste.org/272764/ ``` ====================================================================== FAIL: preprocess_inputs/preprocessinputs/recursive_include_a.py ---------------------------------------------------------------------- Traceback (most recent call last): File "./test_preprocess_inputs.py", line 103, in testFunction = lambda self,...
``` I am unable to run "preprocess -h" in the dos-prompt on my windows 7 system and pythonxy v2.7.9 out of the box after installation. I found that it has...
``` 1. Have the floowing files: common.sh: first.sh: # #include "common.sh" second.sh: # #include "common.sh" result.sh: # #include "first.sh" # #include "second.sh" 2. Try to preprocess the file result.sh: preprocess:...