[swift-users] Using an SPM built module in REPL

Swift Studies swiftstudies at icloud.com
Sat Mar 26 06:37:55 CDT 2016


I have often wanted to quickly test a module I have built in the REPL after building... I can get so far, but then bump up against a problem where it can't seem to find the right symbols. I'm sure I'm doing something simple wrong but the flow is: 

swift build

This correctly builds the module, and I can see .build/debug/PipMath.swiftmodule afterwards

So I try to run the REPL with the new module available for import

swift -I .build/debug

Which works and I can....

  1> import CoreGraphics
  2> import PipMath
  3> print(random(from:1.0, to:2.0))
error: Couldn't lookup symbols:
  __TF7PipMath6randomFT4fromV12CoreGraphics7CGFloat2toS1__S1_

So it very nearly works, but can't seem to find the symbol. Any ideas what I need to do in addition? It would be very useful for iterative development!

-sstudies
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.swift.org/pipermail/swift-users/attachments/20160326/00475d00/attachment.html>


More information about the swift-users mailing list