web-dev-qa-db-ja.com

スタックはGHCおよびCabalバージョンでテストされていません

私のHaskellプロジェクトではstack run、次のように表示されていますが、まだ実行されています。これは何の警告ですか?どうすればそれを取り除くことができますか?

Stack has not been tested with GHC versions above 8.6, and using 8.8.2, this may fail
Stack has not been tested with Cabal versions above 2.4, but version 3.0.1.0 was found, this may fail
15
tmz13

プロジェクトの作成時にリゾルバーを指定して、この警告を取り除くことができます。

stack new hello-world simple --resolver=lts-14.27
0
Emi