You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I get some errors when I run make to run the demo locally
gcc src/main.c -o bin/main src/util.o src/issue.o src/redeem.o src/key_generator.o -I./boringssl/include -L./boringssl/build/crypto -lcrypto -lpthread
src/main.c:26:14: warning: initializing 'uint8_t *' (aka 'unsigned char *') with an expression of type 'char *' converts between pointers to integer types where one is of the unique plain 'char' type and the other is not [-Wpointer-sign]
uint8_t* request_base64 = argv[2];
^ ~~~~~~~
src/main.c:27:40: warning: passing 'uint8_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types where one is of the unique plain 'char' type and the other is not [-Wpointer-sign]
size_t request_base64_len = strlen(request_base64);
^~~~~~~~~~~~~~
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/string.h:82:28: note: passing argument to parameter '__s' here
size_t strlen(const char *__s);
^
src/main.c:45:14: warning: initializing 'uint8_t *' (aka 'unsigned char *') with an expression of type 'char *' converts between pointers to integer types where one is of the unique plain 'char' type and the other is not [-Wpointer-sign]
uint8_t* request_base64 = argv[2];
^ ~~~~~~~
src/main.c:46:40: warning: passing 'uint8_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types where one is of the unique plain 'char' type and the other is not [-Wpointer-sign]
size_t request_base64_len = strlen(request_base64);
^~~~~~~~~~~~~~
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/string.h:82:28: note: passing argument to parameter '__s' here
size_t strlen(const char *__s);
^
Any bright ideas?
Thanks for the demo.
The text was updated successfully, but these errors were encountered:
This demo is only for a Linux (on glitch), and no support for Mac.
And now the origin trials for Trust Token is closed and this code doesn't work anymore.
Once new demo will happen, next one will have docker for build.
Hi Jack
I get some errors when I run
make
to run the demo locallyAny bright ideas?
Thanks for the demo.
The text was updated successfully, but these errors were encountered: