1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 03:28:20 +02:00

Use pre-built LLVM if available

This commit is contained in:
disarray2077 2024-02-16 18:40:58 -03:00
parent 1c310e1bec
commit ec2d888470
7 changed files with 255 additions and 178 deletions

View file

@ -6,11 +6,15 @@ USING_NS_BF;
BF_EXPORT void BF_CALLTYPE Targets_Create()
{
#ifndef __linux__
gX86Target = new X86Target();
#endif
}
BF_EXPORT void BF_CALLTYPE Targets_Delete()
{
#ifndef __linux__
delete gX86Target;
gX86Target = NULL;
#endif
}