[android] Compilation fixes

This commit is contained in:
d-kunin 2013-08-06 13:18:23 +03:00
parent 7c15605c1f
commit f9dcfb55f4
2 changed files with 10 additions and 1 deletions

View file

@ -14,6 +14,14 @@ LOCAL_HEADER_FILES := \
LOCAL_SRC_FILES := \
and_storage.cpp \
# Env files
LOCAL_SRC_FILES += \
../../env/strings.cpp \
../../env/source_address.cpp \
../../env/assert.cpp \
../../3rdparty/utf8proc/utf8proc.c \
# Storage files
LOCAL_SRC_FILES += \
../../storage/storage.cpp \

3
env/assert.cpp vendored
View file

@ -2,7 +2,8 @@
#include "../std/iostream.hpp"
#include <cassert> // for assert
#include <cassert> // for assert
#include <stdlib.h> // for abort
namespace dbg