Why is it that i get a
jni/Android.mk:9: * missing separator. Stop.
error whenever i try to ndk build? My code is as follows
LOCAL_SRC_FILES := \
gnutls-3.0.12/lib/debug.c \
gnutls-3.0.12/lib/gnutls_pcert.c \
gnutls-3.0.12/lib/pkcs11_secret.c \
gnutls-3.0.12/lib/gnutls_kx.c \
is it a syntax error or am i separating my .c files wrongly?
Which is line 9? If it is pkcs11_secret.c, then that is because you have space at the end of line 8 (where gnutls_pcert.c is). Backslash \ must be at the end of line. There should NOT be anything after it – even spaces. That’s because it should escape newline, not space.