Search code examples
scalasbtgatling

Gatling compilation failed


I'm trying to build https://github.com/gatling/gatling but the compilation fails. The steps I undertook:

  1. Installed sbt using the documentation.
  2. Clone the github project.
  3. Execute sbt compile in the directory gatling.

I get the following error:

[error] /home/groot/gatling/gatling-commons/src/main/scala/io/gatling

/commons/util/Arrays.scala:36:32: macro implementation not found: cfor
[error] (the most common reason for that is that you cannot use macro implementations in the same compilation run that defines them)
[error]     cfor(length)(_ > 1, _ - 1) { i =>
[error]                                ^
[error] /home/groot/gatling/gatling-commons/src/main/scala/io/gatling/commons/util/StringHelper.scala:40:23: macro implementation not found: fast
[error] (the most common reason for that is that you cannot use macro implementations in the same compilation run that defines them)
[error]   val EmptyFastring = fast""
[error]                       ^
[error] /home/groot/gatling/gatling-commons/src/main/scala/io/gatling/commons/validation/package.scala:38:20: macro implementation not found: info
[error] (the most common reason for that is that you cannot use macro implementations in the same compilation run that defines them)
[error]         logger.info(message, e)
[error]                    ^
[error] three errors found
[error] (gatling-commons / Compile / compileIncremental) Compilation failed
[error] Total time: 10 s, completed May 4, 2018, 11:30:14 AM

I do not know enough of scala to debug this, how can I fix this?


Solution

  • I've executed as sudo (sudo sbt compile) and now the compilation is succesful.