I maintain a small library in Swift. I read the great article from Ben Cohen about evolution for Stable ABIs. To enable library evolution mode, I have to add a new command-line argument -enable-library-evolution
.
My problem is, that even after I add -enable-library-evolution
argument to Arguments passed On Launch
in my scheme settings, I still have this weird warning from Xcode:
@frozen has no effect without -enable-library-evolution. Replace '@frozen ' with ''
Am I doing something wrong?