Skip to content

Commit

Permalink
Update faq.md
Browse files Browse the repository at this point in the history
  • Loading branch information
pfitzseb committed May 7, 2020
1 parent bb207a5 commit 5618cf8
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions docs/src/man/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,3 +87,13 @@ will be available for packages other than `Base` and `Core` only if they are
loaded into the julia process. This can be achieved by executing the code in
your source file using a shortcut like `Ctrl-Enter`. For example, executing
`using LinearAlgebra` will enable autocompletions for the LinearAlgebra package.

### What do I do about `/lib64/libstdc++.so.6: version 'CXXABI_1.3.9' not found` issues on older Linux versions?

If you cannot update your libstdc++ (or Linux distro) then you can use the libstdc++ shipped with Julia
instead by running
```
export LD_PRELOAD=${JULIA_INSTALL}/lib/julia/libstdc++.so.6
```
before starting Atom.

0 comments on commit 5618cf8

Please sign in to comment.