gowin: Add deprecation message for nextpnr-gowin (#1455)

This commit is contained in:
Miodrag Milanović 2025-02-13 20:31:53 +01:00 committed by GitHub
parent 6caa6e4e85
commit 1ed03ae9be
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 0 deletions

View File

@ -122,5 +122,6 @@ void GowinCommandHandler::customAfterLoad(Context *ctx)
int main(int argc, char *argv[]) int main(int argc, char *argv[])
{ {
GowinCommandHandler handler(argc, argv); GowinCommandHandler handler(argc, argv);
fprintf(stderr, "WARNING: nextpnr-gowin is deprecated, please use nextpnr-himbaechel instead for Gowin FPGA support.\n\n");
return handler.exec(); return handler.exec();
} }