Remove default debugging flags from Makefile
This commit is contained in:
+1
-1
@@ -12,7 +12,7 @@
|
||||
// Release, should be backwards compatible with any minor version
|
||||
#define MAKEGEN_VERSION_RELEASE 3
|
||||
// Minor changes, generally bug fixes
|
||||
#define MAKEGEN_VERSION_MINOR 2
|
||||
#define MAKEGEN_VERSION_MINOR 3
|
||||
|
||||
#define MAKEGEN_VERSION ("v" STR(MAKEGEN_VERSION_MAJOR) "." STR(MAKEGEN_VERSION_RELEASE) "." STR(MAKEGEN_VERSION_MINOR))
|
||||
|
||||
|
||||
+2
-2
@@ -51,11 +51,11 @@ void Makefile::Save(ConfigFile& conf, unsigned int flags)
|
||||
outputFile << std::endl;
|
||||
if(outputtype == "executable" || outputtype != "sharedlibrary")
|
||||
{
|
||||
outputFile << "CFLAGS=$(INCLUDES) -std=c++17 -c -w -g3 ";
|
||||
outputFile << "CFLAGS=$(INCLUDES) -std=c++17 -c ";
|
||||
}
|
||||
else
|
||||
{
|
||||
outputFile << "CFLAGS=$(INCLUDES) -fPIC -std=c++17 -c -w -g3 ";
|
||||
outputFile << "CFLAGS=$(INCLUDES) -fPIC -std=c++17 -c ";
|
||||
}
|
||||
std::vector<std::string>& defines = conf.GetSettingVectorString(ConfigSetting::Define);
|
||||
for(auto it = defines.begin(); it != defines.end(); ++it)
|
||||
|
||||
Reference in New Issue
Block a user