aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Odersky <jodersky@gmail.com>2015-10-03 15:51:24 -0700
committerJakob Odersky <jodersky@gmail.com>2015-10-03 15:51:24 -0700
commitc3b825b45753d8a82930d85cfc2abd81f30cb54a (patch)
tree4d9c12397dd0bff85c334427447e64f49d61b13e
parent1de1317375117b32001d943d64db6d6412c9d720 (diff)
downloadakka-serial-c3b825b45753d8a82930d85cfc2abd81f30cb54a.tar.gz
akka-serial-c3b825b45753d8a82930d85cfc2abd81f30cb54a.tar.bz2
akka-serial-c3b825b45753d8a82930d85cfc2abd81f30cb54a.zip
documentation fix #18
-rw-r--r--Documentation/getting-started.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/Documentation/getting-started.md b/Documentation/getting-started.md
index 8dabb80..ba0ce43 100644
--- a/Documentation/getting-started.md
+++ b/Documentation/getting-started.md
@@ -21,10 +21,10 @@ In case your OS/architecture combination is present in the table below, add a se
libraryDependencies += "com.github.jodersky" % "flow-native" % "2.3.0"
-| OS | Architecture | Notes |
-|-------------------|-----------------------------|---------------------------------------------------------------------------------|
-| Linux | x86<br/>x86_64<br/>ARM (v7) | A user accessing a serial port will probably need to be in the `dialout` group. |
-| Mac OS X | x86_64 | |
+| OS | Architecture | Notes |
+|-------------------|-----------------------------|------------------------------------------------------------------------------------------------------------------------|
+| Linux | x86<br/>x86_64<br/>ARM (v7) | A user accessing a serial port will usually need to be in the `dialout` group, otherwise permission errors will occur. |
+| Mac OS X | x86_64 | |
This will add a jar to your classpath containing native libraries for various platforms. At run time, the correct library for the current platform is selected, extracted and loaded. This solution enables running applications seamlessly, as if they were pure JVM applications.
However, since the JVM does not enable full determination of the current platform (only OS and rough architecture are known), only a couple of platforms can be supported through this solution at the same time.