1. Binder w/ preprocessor?
- Posted by AndySerpa Apr 07, 2011
- 1094 views
Is there a way to get the binder/shrouder to work with the pre-processor? I notice that the binder lists an option -d (define a preprocessor word) that is not in the docs for the binder, only under eubind --help, but the binder won't accept a pre-processor option so what's it for?
Anyway, I can translate OK with the preprocessor, but can't bind -- at least not without pre-processing everything first, and then manually changing all the include statements to use all the preprocessed files (and then binding the top-level preprocessed version of the program with includes to all the .pp. files instead of the originals). I'd like to do some significant trickery with the preprocessor, but would kinda suck if I can't then bind the program.
Is this an as-yet undeveloped area?
2. Re: Binder w/ preprocessor?
- Posted by jeremy (admin) Apr 07, 2011
- 1107 views
I have not worked with the binder that much. The pre-processor works fine with the translator however.
Jeremy
3. Re: Binder w/ preprocessor?
- Posted by AndySerpa Apr 07, 2011
- 1092 views
Yes, works great with translator. I guess I could make a special pre-binding preprocessor that would change all the include statements for me, and then I would just bind the .pp. version of the program. (I need this because for some of my programs, I need the full debug capability you get with binding.)