Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bloop compile to correct JVM version #217

Merged

Commits on Oct 27, 2021

  1. Ensure Bloop is capable of compiling code using certain JVM api

    For example the code may call java.util.Optional.isEmpty, which
    came in JVM11. If bloop has been spawned under JDK8, it uses JDK8's
    `javac` command which does not allow using this function.
    
    On the other hand execution `scala-cli --jvm 11`, if bloop is newer
    could lead to a false positive compilation result. Therefore we now
    use release flags in scalac/javac to manipulate api restrictions.
    tpasternak committed Oct 27, 2021
    Configuration menu
    Copy the full SHA
    52cc2ce View commit details
    Browse the repository at this point in the history

Commits on Oct 28, 2021

  1. Renames

    tpasternak committed Oct 28, 2021
    Configuration menu
    Copy the full SHA
    2400eb9 View commit details
    Browse the repository at this point in the history
  2. Fix type error

    tpasternak committed Oct 28, 2021
    Configuration menu
    Copy the full SHA
    ae51120 View commit details
    Browse the repository at this point in the history