1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 11:38:21 +02:00

Added bitcode emission, additional logging

This commit is contained in:
Brian Fiete 2019-10-29 04:56:42 -07:00
parent 1e8c633a36
commit 43b69023f6
14 changed files with 74 additions and 31 deletions

View file

@ -98,8 +98,7 @@ public:
BfMachineType mMachineType;
int mCLongSize;
BfToolsetType mToolsetType;
BfSIMDSetting mSIMDSetting;
int mMaxWorkerThreads;
BfSIMDSetting mSIMDSetting;
String mMallocLinkName;
String mFreeLinkName;
bool mIncrementalBuild;
@ -127,6 +126,7 @@ public:
bool mWriteIR;
bool mGenerateObj;
bool mGenerateBitcode;
int mAllocStackCount;
bool mExtraResolveChecks;
@ -164,6 +164,7 @@ public:
mEnableRealtimeLeakCheck = false;
mWriteIR = false;
mGenerateObj = true;
mGenerateBitcode = false;
mEnableCustodian = false;
mEnableSideStack = false;
mHasVDataExtender = false;