Differences From
Artifact [90c24eca6f]:
602 602 print(util.dump(config))
603 603 os.exit(0)
604 604 end
605 605
606 606 local holler = print
607 607 local suffix = config.exe and '' or ('.'..config.outform)
608 608 local out = 'parsavd' .. suffix
609 -local linkargs = {'-O4'}
609 +local linkargs = {}
610 610 local target = config.tgttrip and terralib.newtarget {
611 611 Triple = config.tgttrip;
612 612 CPU = config.tgtcpu;
613 613 FloatABIHard = config.tgthf;
614 614 } or nil
615 615
616 616 if bflag('quiet','q') then holler = function() end end