Skip to content
This repository has been archived by the owner on Nov 1, 2020. It is now read-only.

Commit

Permalink
Use the correct target triple for x86
Browse files Browse the repository at this point in the history
  • Loading branch information
MichalStrehovsky committed Jan 8, 2020
1 parent 0630d48 commit d151faa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1226,7 +1226,7 @@ private static string GetLLVMTripleFromTarget(TargetDetails target)
arch = "x86_64";
break;
case TargetArchitecture.X86:
arch = "x86";
arch = "i686";
break;
case TargetArchitecture.Wasm32:
arch = "wasm32";
Expand Down

0 comments on commit d151faa

Please sign in to comment.