diff options
author | Partouf <partouf@gmail.com> | 2019-08-25 16:26:35 +0200 |
---|---|---|
committer | Partouf <partouf@gmail.com> | 2019-08-25 16:26:35 +0200 |
commit | 41f696489d6787b2b5b3fffc8b52582ae7547ad8 (patch) | |
tree | 1ccea2e7819d63d0633e0589112fae46d70317f1 /lib/compilers/swift.js | |
parent | fd8636305a1d3e8ad90ce0214e48bfa34c74b02b (diff) | |
download | compiler-explorer-41f696489d6787b2b5b3fffc8b52582ae7547ad8.tar.gz compiler-explorer-41f696489d6787b2b5b3fffc8b52582ae7547ad8.zip |
fix #1552
Diffstat (limited to 'lib/compilers/swift.js')
-rw-r--r-- | lib/compilers/swift.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/compilers/swift.js b/lib/compilers/swift.js index 71934d7e8..b1c6fb558 100644 --- a/lib/compilers/swift.js +++ b/lib/compilers/swift.js @@ -26,6 +26,10 @@ const BaseCompiler = require('../base-compiler'), argumentParsers = require("./argument-parsers"); class SwiftCompiler extends BaseCompiler { + getSharedLibraryPathsAsArguments() { + return []; + } + getArgumentParser() { return argumentParsers.Clang; } |