Fix the order of libraries in linking.

libcutils should go after libutils since the former contains the
definitions required by the later.
diff --git a/Android.mk b/Android.mk
index ea92c06..2aca0da 100644
--- a/Android.mk
+++ b/Android.mk
@@ -141,7 +141,7 @@
   libLLVMCore \
   libLLVMSupport
 
-LOCAL_SHARED_LIBRARIES := libbcinfo libdl libcutils libutils libstlport
+LOCAL_SHARED_LIBRARIES := libbcinfo libdl libutils libcutils libstlport
 
 # Modules that need get installed if and only if the target libbcc.so is
 # installed.
@@ -232,8 +232,8 @@
   libLLVMSupport
 
 LOCAL_STATIC_LIBRARIES += \
-  libcutils \
-  libutils
+  libutils \
+  libcutils
 
 LOCAL_SHARED_LIBRARIES := libbcinfo