C-bindings for the Go Cwtch Library https://cwtch.im
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Go to file
Sarah Jamie Lewis ae179fab72
continuous-integration/drone/pr Build is running Details
continuous-integration/drone/push Build is passing Details
Ensure Block Unknown Connections Settings is Respected on Protocol Engine Restart
4 months ago
constants add (De)ActivateEngine API calls; support profile autostart 6 months ago
features add build date and version info; add server sync state data 1 year ago
utils Ensure Block Unknown Connections Settings is Respected on Protocol Engine Restart 4 months ago
.drone.yml Update Android Container 4 months ago
.gitignore macos uses .dylib 2 years ago
BUILDING_DEBUG.md Fresh Repository Commit - Cwtch Beta 2 years ago
LICENSE mit license 2 years ago
MEMORY.md Clarify Memory Ownership Model of libCwtch and Callers 2 years ago
Makefile Add trimpath, essential for Android repeatability 5 months ago
README.md pull in windows build notes from pr 67 12 months ago
clangwrap.sh Build ios 2 years ago
go.mod Fix File Downloading on Android 6 months ago
go.sum Fix File Downloading on Android 6 months ago
lib.go Fix File Downloading on Android 6 months ago
quality.sh Fix logging of ACN 1 year ago
switch-ffi.sh switch swtich-*.sh back to sed now with -i.bak and rm lib.go.bak for compatibility with macos 2 years ago
switch-gomobile.sh switch swtich-*.sh back to sed now with -i.bak and rm lib.go.bak for compatibility with macos 2 years ago

README.md

libcwtch-go

C-bindings for the Go Cwtch Library.

Build Instructions

make linux
make android
make windows
make macos

Android Build Notes

Our build infrastructure is using Go 1.15.10, NDK 21.0.6113669, and gomobile commit bdb1ca9a1e083af5929a8214e8a056d638ebbf2d (2021 07 16)

Go 1.17.4, NDK 22.1.7171670, and gomobile 4e6c2922fdeed32d3596616518aaee7b0d79ce55 (2021 12 07) appear to compile as well.

Other version combinations untested and some definitely do not work.

Windows

Cwtch relies on sqlite which in turn requires the use of CGO. As per this issue that means TDM-GCC is required to be installed and used to compile on Windows. Install it and add it to your path and make windows should then work.

Experimental iOS support

make ios

Using

General Environment Variables

  • LOG_FILE if defined will mean all go logging will go to a file instead of stdout
  • LOG_LEVEL if set to debug will cause debug logging to be included in log output
  • CWTCH_PROFILE if set to 1 will cause a memory profile to be written to mem.prof and all active goroutines written to stdout when DebugInfo() is called.

Linux Desktop:

  • LD_LIBRARY_PATH set to point to libCwtch.so
  • or drop a symlink into /usr/lib

Android

  • copy cwtch.aar into flutter_app/android/cwtch

Windows

  • copy libCwtch.dll into the directory of the .exe using it

MacOS

  • copy libCwtch.x64.dylib and libCwtch.arm.dylib into the directory you are executing from