Dominykas Mostauskis
Dominykas Mostauskis

Reputation: 8135

How to use fsc with sbt?

Related question: Does SBT use the Fast Scala Compiler (fsc)?

Can fsc be used with sbt; would it be practical; and if so, how to integrate fsc into sbt?

Upvotes: 3

Views: 415

Answers (1)

Seth Tisue
Seth Tisue

Reputation: 30498

fsc cannot be used with sbt.

https://github.com/sbt/sbt/wiki/Client-server-split shows that the sbt team is currently working in a similar/related direction. They're turning sbt itself into a local compile server — like fsc but better. I wouldn't be surprised if once they're done, fsc is deprecated and removed from Scala. (fsc has never worked all that well or been very actively maintained.)

Upvotes: 4

Related Questions