Skip to content

Commit

Permalink
fix android build
Browse files Browse the repository at this point in the history
  • Loading branch information
tryingsomestuff committed Apr 21, 2020
1 parent d76d646 commit da039cc
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Source/logging.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,13 @@

#include "definition.hpp"

#ifdef __linux__
#ifdef __ANDROID__
inline std::string backtrace(){
////@todo
return "";
}

#elif __linux__
#include <stdio.h>
#include <execinfo.h>
#include <signal.h>
Expand Down

0 comments on commit da039cc

Please sign in to comment.