ghdl / ghdl-language-server

Language server based on ghdl
MIT License
92 stars 8 forks source link

Compatibility with std=19 ? #175

Open csantosb opened 8 months ago

csantosb commented 8 months ago

Is ghdl-ls compatible with option std=19 ? No matter which vhd file I use, the config file

    {"options": {
        "ghdl_analysis": [
            "--workdir=work",
            "--ieee=standard",
            "--std=09"]},
     "files": [
         {"file": "src/ANY.vhd", "language": "vhdl", "library": "work"}]}

gives me an error. No problem with std=08, though.

tgingold commented 8 months ago

What is the error ? But you need --std=19. The libraries are not yet compiled, but this is planned for this year.

csantosb commented 8 months ago

What is the error ? But you need --std=19. The libraries are not yet compiled, but this is planned for this year.

You can see an example here, including the project file and the logfile.

https://git.sr.ht/~csantosb/test-vhdl-2019

Is this expected behaviour ?