mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-24 18:48:01 +02:00
Added Android support, and generalized target triple support
Added PICLevel, RelocKind DarwinCommon/LinuxCommon/AndroidCommon merged into PosixCommon Mangling changed to avoid '@'
This commit is contained in:
parent
7a27ab75bf
commit
3883a3674d
39 changed files with 3457 additions and 5636 deletions
|
@ -109,16 +109,20 @@ public:
|
|||
uint8 mBuf[1024];
|
||||
int mBufSize;
|
||||
int mBufOffset;
|
||||
#ifdef BF_PLATFORM_WINDOWS
|
||||
bool mDbgViz;
|
||||
FileStream* mDbgVizStream;
|
||||
#endif
|
||||
|
||||
public:
|
||||
HashContext()
|
||||
{
|
||||
mBufOffset = 0;
|
||||
mBufSize = 0;
|
||||
#ifdef BF_PLATFORM_WINDOWS
|
||||
mDbgViz = false;
|
||||
mDbgVizStream = NULL;
|
||||
#endif
|
||||
}
|
||||
|
||||
~HashContext();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue