MCPcopy Create free account
hub / github.com/beefytech/Beef / FuzzApp

Method FuzzApp

BeefFuzz/FuzzApp.cpp:79–107  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

77
78
79FuzzApp::FuzzApp()
80{
81 Targets_Create();
82
83 mTargetType = BfTargetType_BeefConsoleApplication;
84
85 mSystem = NULL;
86 mCompiler = NULL;
87 mProject = NULL;
88 mCELibProject = NULL;
89 mIsCERun = false;
90 mStartupObject = "Program";
91
92#ifdef BF_PLATFORM_WINDOWS
93 mOptLevel = BfOptLevel_OgPlus;
94 mToolset = BfToolsetType_Microsoft;
95#else
96 mOptLevel = BfOptLevel_O0;
97 mToolset = BfToolsetType_GNU;
98#endif
99
100#ifdef BF_PLATFORM_WINDOWS
101 mTargetTriple = "x86_64-pc-windows-msvc";
102#elif defined BF_PLATFORM_MACOS
103 mTargetTriple = "x86_64-apple-macosx10.8.0";
104#else
105 mTargetTriple = "x86_64-unknown-linux-gnu";
106#endif
107}
108
109FuzzApp::~FuzzApp()
110{

Callers

nothing calls this directly

Calls 1

Targets_CreateFunction · 0.85

Tested by

no test coverage detected