mirror of
https://github.com/matrix-org/dendrite.git
synced 2025-12-26 08:13:09 -06:00
Strip frameworks
This commit is contained in:
parent
39ba463902
commit
73c0ea9ff1
|
|
@ -6,8 +6,8 @@ while getopts "ai" option
|
|||
do
|
||||
case "$option"
|
||||
in
|
||||
a) gomobile bind -v -target android github.com/matrix-org/dendrite/build/gobind-pinecone ;;
|
||||
i) gomobile bind -v -target ios github.com/matrix-org/dendrite/build/gobind-pinecone ;;
|
||||
a) gomobile bind -v -target android -trimpath -ldflags="-s -w" github.com/matrix-org/dendrite/build/gobind-pinecone ;;
|
||||
i) gomobile bind -v -target ios -trimpath -ldflags="-s -w" github.com/matrix-org/dendrite/build/gobind-pinecone ;;
|
||||
*) echo "No target specified, specify -a or -i"; exit 1 ;;
|
||||
esac
|
||||
done
|
||||
|
|
@ -356,8 +356,8 @@ func (m *DendriteMonolith) Stop() {
|
|||
_ = m.listener.Close()
|
||||
m.PineconeMulticast.Stop()
|
||||
_ = m.PineconeQUIC.Close()
|
||||
_ = m.PineconeRouter.Close()
|
||||
m.processContext.ShutdownDendrite()
|
||||
_ = m.PineconeRouter.Close()
|
||||
}
|
||||
|
||||
func (m *DendriteMonolith) Suspend() {
|
||||
|
|
|
|||
Loading…
Reference in a new issue