I use Mentor ModelSim .f files for my file lists. Adding these files as argument files in the SVEditor project works well. However, one issue is that SVEditor can't find any of my `include files.
My source files use the recommended practice of not including any paths in the `include directives, so the .f files use the +incdir syntax to add directories to the include search path.
It would be nice if SVEditor supported this syntax.
From the ModelSim Reference Manual:
+incdir+<directory>
Specifies directories to search for files included with `include compiler directives. Optional.
By default, the current directory is searched first and then the directories specified by the
+incdir options in the order they appear on the command line. You may specify multiple
+incdir options as well as multiple directories separated by "+" in a single +incdir option.
Hi Chris,
You can currently include +incdir+ options in .f files. You can also include .f files inside another .f file (as of 0.6.1.ea05) . One approach to this issue is to create an argument file for SVEditor. For example:
+incdir+<path>
+incdir+<path>
-f <files_file>
From your feature request, it sounds like you'd like to be able to specify include directories somewhere outside the .f file -- for example, in the SVEditor project properties dialog. Is this correct?
Thanks,
Matthew