[android] Fixes for static lib toolchain support

This commit is contained in:
Alex Zolotarev 2011-06-12 19:26:28 +03:00 committed by Alex Zolotarev
parent 1b4276e965
commit 3496cc6990
11 changed files with 38 additions and 10 deletions

View file

@ -4,7 +4,11 @@
#include <sys/mman.h>
#include <sys/errno.h>
#include <sys/stat.h>
#include <sys/fcntl.h>
#ifdef OMIM_OS_ANDROID
#include <fcntl.h>
#else
#include <sys/fcntl.h>
#endif
#include <unistd.h>
#endif

View file

@ -2,7 +2,7 @@
#include "../../base/base.hpp"
#ifdef _MSC_VER
#if defined(OMIM_OS_WINDOWS_NATIVE)
#define fseek64 _fseeki64
#define ftell64 _ftelli64
@ -14,11 +14,17 @@
#define __LARGE64_FILES
typedef uint64_t _fpos64_t;
#elif defined(OMIM_OS_WINDOWS)
#elif defined(OMIM_OS_WINDOWS_MINGW)
STATIC_ASSERT(sizeof(off64_t) == 8);
#define fseek64 fseeko64
#define ftell64 ftello64
#elif defined(OMIM_OS_ANDROID)
// For Android, off_t is 32bit, so big files are not supported
STATIC_ASSERT(sizeof(off_t) == 4);
#define fseek64 fseeko
#define ftell64 ftello
#else
STATIC_ASSERT(sizeof(off_t) == 8);
#define fseek64 fseeko

View file

@ -40,7 +40,7 @@ SOURCES += \
benchmark_provider.cpp \
languages.cpp \
!iphone*:!bada* {
!iphone*:!bada*:!android* {
HEADERS += qgl_render_context.hpp
SOURCES += qgl_render_context.cpp
QT += opengl

View file

@ -6,7 +6,7 @@ CONFIG += ordered
HEADERS += defines.hpp
# desktop projects
!iphone*:!bada* {
!iphone*:!bada*:!android* {
SUBDIRS = 3party \
base base/base_tests \
coding coding/coding_tests \

View file

@ -11,7 +11,7 @@ include($$ROOT_DIR/common.pri)
QT *= core network
!iphone* {
!iphone*:!android* {
INCLUDEPATH += $$ROOT_DIR/3party/jansson/src
SOURCES += \

View file

@ -19,6 +19,9 @@
#elif defined(OMIM_OS_LINUX)
#include "../std/stdlib.hpp"
#elif defined(OMIM_OS_ANDROID)
/// @TODO
#else
#error "Define language preferences for your platform"
@ -151,6 +154,9 @@ void SystemPreferredLanguages(vector<string> & languages)
else if ((p = getenv("LANG")))
languages.push_back(p);
#elif defined(OMIM_OS_ANDROID)
/// @TODO
#else
#error "Define language preferences for your platform"
#endif

View file

@ -16,9 +16,11 @@
using std::cin;
using std::cout;
using std::cerr;
#ifndef OMIM_OS_ANDROID
using std::wcin;
using std::wcout;
using std::wcerr;
#endif
#endif // OMIM_OS_BADA
using std::endl;

View file

@ -16,7 +16,7 @@
typedef unsigned __int32 uint32_t;
typedef unsigned __int64 uint64_t;
#elif defined(OMIM_OS_BADA)
#elif defined(OMIM_OS_BADA) || defined(OMIM_OS_ANDROID)
#include <stdint.h>
#else

View file

@ -12,7 +12,7 @@ using std::basic_string;
using std::string;
using std::getline;
#ifdef OMIM_OS_BADA
#if defined(OMIM_OS_BADA) || defined(OMIM_OS_ANDROID)
typedef std::basic_string<wchar_t> wstring;
#else
using std::wstring;

View file

@ -1,6 +1,10 @@
#pragma once
#if defined(_BADA_SIMULATOR) || defined(_BADA_DEVICE)
#if defined(ANDROID)
#define OMIM_OS_ANDROID
#define OMIM_OS_NAME "android"
#elif defined(_BADA_SIMULATOR) || defined(_BADA_DEVICE)
#define OMIM_OS_BADA
#define OMIM_OS_NAME "bada"

View file

@ -9,7 +9,7 @@
using namespace Osp::Graphics::Opengl;
#define OMIM_GL_ES
#elif (defined(OMIM_OS_MAC) || defined(OMIM_OS_IPHONE))
#elif defined(OMIM_OS_MAC) || defined(OMIM_OS_IPHONE)
#include <TargetConditionals.h>
#ifdef OMIM_OS_IPHONE
@ -21,6 +21,12 @@
#include <OpenGL/gl.h>
#include <OpenGL/glext.h>
#endif
#elif defined(OMIM_OS_ANDROID)
#include <GLES/gl.h>
#include <GLES/glext.h>
#define OMIM_GL_ES
#else
#define GL_GLEXT_PROTOTYPES
#include <GL/gl.h>