How to replace compiler flags in Xcode

I want to change the compiler flag '-serialize-debugging-options' to '-no-serialize-debugging-options', and I put the 'Xfrontend -no-serialize-debugging-options' in Other swift flags of Xcode build setttings, I found the build output add my flag to compiler but '-serialize-debugging-options' is still there, just like

/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-driver -no-serialize-debugging-options -serialize-debugging-options

Is there a way to remove '-serialize-debugging-options' flag?