1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 12:32:20 +02:00

Start of wasm support

This commit is contained in:
Brian Fiete 2020-08-06 09:24:37 -07:00
parent 053b302d42
commit b7b065855d
22 changed files with 487 additions and 35 deletions

View file

@ -215,6 +215,7 @@ enum BfPlatformType
BfPlatformType_macOS,
BfPlatformType_iOS,
BfPlatformType_Android,
BfPlatformType_Wasm
};
enum BfMachineType
@ -223,7 +224,9 @@ enum BfMachineType
BfMachineType_x86,
BfMachineType_x64,
BfMachineType_ARM,
BfMachineType_AArch64
BfMachineType_AArch64,
BfMachineType_Wasm32,
BfMachineType_Wasm64,
};
enum BfToolsetType