Migrated
This commit is contained in:
16
fpc/library/target.cpp
Normal file
16
fpc/library/target.cpp
Normal file
@@ -0,0 +1,16 @@
|
||||
#include "target.h"
|
||||
#include <god/build.h>
|
||||
|
||||
Target_t Target_t::DefaultTarget()
|
||||
{
|
||||
return {
|
||||
.kernel = TARGET_KERNEL_LINUX,
|
||||
#ifdef __x86_64__
|
||||
.cpu = TARGET_CPU_AMD64,
|
||||
#endif
|
||||
#ifdef __x86__
|
||||
.cpu = TARGET_CPU_I386,
|
||||
#endif
|
||||
.optimization = TARGET_DEBUG,
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user