Skip to content

Commit 2e4bb8b

Browse files
authored
Merge pull request one-ware#27 from FEntwumS/ghdl-6.0.0
Add support for GHDL 6.0.0
2 parents 64d2b77 + 7e28629 commit 2e4bb8b

1 file changed

Lines changed: 50 additions & 2 deletions

File tree

src/OneWare.GhdlExtension/GhdlExtensionModule.cs

Lines changed: 50 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -246,12 +246,60 @@ public class GhdlExtensionModule : OneWareModuleBase
246246
{
247247
Target = "osx-arm",
248248
Url =
249-
"https://github.com/ghdl/ghdl/releases/download/v5.1.1/ghdl-mcode-5.1.1-macos13-arm.tar.gz",
249+
"https://github.com/ghdl/ghdl/releases/download/v5.1.1/ghdl-llvm-5.1.1-macos14-aarch64.tar.gz",
250250
AutoSetting =
251251
[
252252
new PackageAutoSetting()
253253
{
254-
RelativePath = "ghdl-mcode-5.1.1-macos13-x86_64/bin/ghdl",
254+
RelativePath = "ghdl-llvm-5.1.1-macos14-aarch64/bin/ghdl",
255+
SettingKey = GhdlPathSetting
256+
}
257+
]
258+
}
259+
]
260+
},
261+
new PackageVersion()
262+
{
263+
Version = "6.0.0",
264+
Targets =
265+
[
266+
new PackageTarget()
267+
{
268+
Target = "win-x64",
269+
Url = "https://github.com/ghdl/ghdl/releases/download/v6.0.0/ghdl-mcode-6.0.0-ucrt64.zip",
270+
AutoSetting =
271+
[
272+
new PackageAutoSetting()
273+
{
274+
RelativePath = "bin/ghdl.exe",
275+
SettingKey = GhdlPathSetting
276+
}
277+
]
278+
},
279+
new PackageTarget()
280+
{
281+
Target = "linux-x64",
282+
Url =
283+
"https://github.com/ghdl/ghdl/releases/download/v6.0.0/ghdl-mcode-6.0.0-ubuntu24.04-x86_64.tar.gz",
284+
AutoSetting =
285+
[
286+
new PackageAutoSetting()
287+
{
288+
RelativePath = "ghdl-mcode-6.0.0-ubuntu24.04-x86_64/bin/ghdl",
289+
SettingKey = GhdlPathSetting
290+
}
291+
]
292+
},
293+
new PackageTarget()
294+
{
295+
Target = "osx-arm",
296+
Url =
297+
"https://github.com/ghdl/ghdl/releases/download/v6.0.0/ghdl-llvm-6.0.0-macos14-aarch64.tar.gz",
298+
AutoSetting =
299+
[
300+
new PackageAutoSetting()
301+
{
302+
RelativePath = "ghdl-llvm-6.0.0-macos14-aarch64/bin/ghdl",
255303
SettingKey = GhdlPathSetting
256304
}
257305
]

0 commit comments

Comments
 (0)