0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Intellij で Haskell プラグインを利用した際、コードを実行しようとすると「Cannot run configuration」と表示され実行出来ない場合の対処方法

Posted at

問題

Haskell のコードを IntelliJ で実行しようとすると

Cannot run configuration

と怒られ IDE 上からコードの実行が出来ない。

解決方法

以下のファイルを編集

/$(ProjectDir)/.idea/workspace.xml

問題がある部分

workspace.xml
<!-- 問題があるのはこの要素 -->
<configuration default="false" name="Run" type="HaskellRunConfiguration" factoryName="Haskell" singleton="true">
      <module name="" />
      <setting name="mainFile" value="file://$PROJECT_DIR$/src/hogehoge.hs" />
      <setting name="params" value="" />
      <setting name="rtFlags" value="" />
      <setting name="workDir" value="" />
      <setting name="passParentEnv" value="true" />
      <RunnerSettings RunnerId="Run" />
      <ConfigurationWrapper RunnerId="Run" />
      <method />
    </configuration>
workspace.xml
<!-- このように module 要素の name 属性が空になってる事があるので -->
<module name="" />

修正後

workspace.xml
<!-- ちゃんと値をいれてあげる -->
<module name="hogehoge" />

これでうちでは問題なく動いています。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?