Skip to content

Commit

Permalink
Fix regression from "7/31 Initial integration of llvm back end into c…
Browse files Browse the repository at this point in the history
…m3's build system." when bootstrapping

using cm3cg. .c files pass through for bootstrap, along with any .h or checked in .s/.o etc.
bootstrapping is using cm3 -boot.
  • Loading branch information
jaykrell committed Sep 1, 2015
1 parent 4537cb8 commit 477c3d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions m3-sys/cm3/src/Builder.m3
Expand Up @@ -3313,10 +3313,10 @@ PROCEDURE FinalNameForUnit (s: State; u: M3Unit.T): TEXT =
CASE ext OF
| UK.I3, UK.IC, UK.IB => ext := UK.IS;
| UK.M3, UK.MC, UK.MB => ext := UK.MS;
| UK.B, UK.C => ext := UK.MS;
| UK.B => ext := UK.MS;
| UK.IS, UK.IO,
UK.MS, UK.MO,
UK.H, UK.S, UK.O => RETURN M3Unit.FileName (u);
UK.H, UK.S, UK.O, UK.C => RETURN M3Unit.FileName (u);
ELSE RETURN NIL;
END;

Expand Down

0 comments on commit 477c3d0

Please sign in to comment.