-
Notifications
You must be signed in to change notification settings - Fork 136
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Help with exclude_dir #421
Comments
Know how I said it worked fine after I moved away
So...more for me to learn/debug! But I'm still interested in how to use |
Also, I did have to fix a few programs in MAPL (they had an |
You're not doing anything wrong really, you've just hit a bit of a sharp edge: the So for now, I suggest deleting exclude_dir:
../Ford
../MAPL_cfio to exclude the ford output directory. Really, we should be a bit more clever ourselves and exclude the ford output directory automatically! I'll see if I can make that happen. The error with I've not yet got to the bottom of the jinja2 error. I think I'll have to cut down the file by hand to debug it. My suspicion is that we're not processing a type-bound procedure correctly and just leaving it as a string somehow. |
@ZedThree Well, I never even got to the
This last one is fun. I'm running on a MacBook and without any module loaded, If I explicitly point to GNU cpp with:
Then I get the jinja2 error. But with NAG So for now I'll work with NAG |
I've tracked down the jinja2 error now too.
Actually looking into this further, if preprocessing reports anything to |
Ohh. Yeah. We probably do repeatedly re-define it and since things still worked, we never took a hard look. I'll take a look on our end and see if we can't just clean that up in MAPL with more careful |
I think I've now fixed the issues that prevented ford working on the |
I'm a newbie to FORD, but I'm trying to apply it to a library I work on, MAPL. I grabbed FORD from Brew and it is 6.1.11
I decided to go for broke and just try it out. I cloned MAPL and made a directory,
Ford/
just to keep things safe and then made a basicproject.md
:When I did that all was well but then it failed with:
This is a bit weird since, well,
strTemplate_
is in that list of known procedures! (It's next toGX_
6 lines up from the end.)But, fine, this is a bit of the library (MAPL_cfio) I don't care much about, so I'm fine just ignoring it. The issue is, I can't seem to exclude it. If I add to
project.md
:it doesn't work and errors out the same way. I then tried:
But nope. I even tried a full path (even though the docs say "Don't do that.") but nope.
The only way I can get past this error is to just move the directory out of the source entirely.
So what is the right way to use
exclude_dir
?The text was updated successfully, but these errors were encountered: