~jsvoboda/helenos/dnsr

« back to all changes in this revision

Viewing changes to tools/autotool.py

  • Committer: Jiri Svoboda
  • Date: 2013-04-19 18:38:18 UTC
  • mfrom: (1527.1.284 main-clone)
  • Revision ID: jiri@wiwaxia-20130419183818-nvfibuh4t5qol0e3
MergeĀ mainlineĀ chages.

Show diffs side-by-side

added added

removed removed

Lines of Context:
562
562
        
563
563
        outmk.write('#########################################\n')
564
564
        outmk.write('## AUTO-GENERATED FILE, DO NOT EDIT!!! ##\n')
 
565
        outmk.write('## Generated by: tools/autotool.py     ##\n')
565
566
        outmk.write('#########################################\n\n')
566
567
        
567
568
        for key, value in common.items():
579
580
        
580
581
        outhd.write('/***************************************\n')
581
582
        outhd.write(' * AUTO-GENERATED FILE, DO NOT EDIT!!! *\n')
 
583
        outhd.write(' * Generated by: tools/autotool.py     *\n')
582
584
        outhd.write(' ***************************************/\n\n')
583
585
        
584
586
        outhd.write('#ifndef %s\n' % GUARD)
673
675
                                check_config(config, "MACHINE")
674
676
                                common['CC_ARGS'].append("-mabi=32")
675
677
                                
676
 
                                if ((config['MACHINE'] == "lgxemul") or (config['MACHINE'] == "msim")):
 
678
                                if ((config['MACHINE'] == "msim") or (config['MACHINE'] == "lmalta")):
677
679
                                        target = config['PLATFORM']
678
680
                                        gnu_target = "mipsel-linux-gnu"
679
681
                                
680
 
                                if (config['MACHINE'] == "bgxemul"):
 
682
                                if ((config['MACHINE'] == "bmalta")):
681
683
                                        target = "mips32eb"
682
684
                                        gnu_target = "mips-linux-gnu"
683
685