-
Notifications
You must be signed in to change notification settings - Fork 2
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
Listing HEADER files #116
Comments
This is implemented in 0318507. I would appreciate feedback on this feature, or maybe alternative ideas on how to solve it @mksoc @benoitdenkinger @nookfoo To add more context. Simulators expect only source files to be passed as CLI arguments, while header files are expected to be found through include directories, passed as (+incdir+). The solution found in CMake and C++ (gcc depend files) is not available in SystemVerilog tools, so at the moment I opted for the option of explicitly listing header files. There are some advantages to this solution:
A disadvantage is:
With this implementation header files can be added as follows:
To get the header files only (without sources) call: P.S. There was an alternative implementation of this, to be more consistent with CMake. CMake you can list header files (optional) in the target_sources() function like this:
There are no delimiter
|
Tracking header files is definitely helpful. We faced the problem when "exporting" the sources from a target but only having the header files include directories. What we implemented was copying all the files inside the include directories, which is not ideal. Regarding the implementation, I don't have a strong opinion. Supporting the non-explicit solution (without the HEADERS parameter) requires defining standard extensions, but I guess it is the same for the target_sources() built-in function. At some point, we cannot support any input from users and I've never seen SystemVerilog files with an extension different that 'sv' or 'svh' (but maybe for other languages it is not so standard). I think this also imposes some minimum rules, I wouldn't like (and provide support) to a project that defines SystemVerilog files with meaningless extensions. |
I agree that not everything should be allowed as file extensions. A more important reason why I kept it explicit is that in case of adding a "new" language, the user would have to define the file extensions as well for the language. Header installationSomething to consider when copying header files.
In that case the include directory should be set like this:
It is important that at the destination the directory structure stays |
Simulator/tool specific filesFiles like the vlt ones are simulator specific and each simulator have its own set of input files it can defined. For verilator, this For this kind of files (simulator/tool specific), we either need to support them with an additional language (which is already what we have for these vlt files I believe) or we need to give the possibility to the user to add the extra language (that we have) and also put an extra generic argument when calling the different simulators (and tools in general) to be able to pass extra commands/files. If the files are commonly used (e.g., these vlt files), I would support them natively, for more custom features I would let the users do the work. Header installationWhen calling the target_source() function, one format is (source):
In We could also request the BASE_DIRS with the HEADERS (I'm not proposing to use the other syntax format with the FILE_SET, this is just an example I found). |
Currently, there is no way to retrigger targets if the verilog header files change.
This is a similar problem to how C++ header files are tracked with depend.make in Makefiles.
Currently, easiest solution to implement is to list the header files manually, something like:
The text was updated successfully, but these errors were encountered: