summary refs log tree commit diff stats
path: root/compiler/extccomp.nim
Commit message (Expand)AuthorAgeFilesLines
* Fixes #1955Varriount2015-01-171-2/+2
* quote filenames in when invoking compiler from C backendMichał Zieliński2015-01-141-2/+1
* Merge pull request #1569 from idlewan/prettyCCAndreas Rumpf2014-11-031-12/+27
|\
| * Tidy up the prettification of the default verbosity c compilation outputErwan Ameil2014-10-131-6/+9
| * Prettify compiler output for verbosity=1Erwan Ameil2014-10-121-12/+24
* | Fix #1599Clay Sweetser2014-10-291-10/+28
|/
* implemented mixed mode codegenAraq2014-10-031-22/+19
* Nimrod renamed to NimAraq2014-08-281-1/+1
* renamefestAraq2014-08-231-1/+1
* Fix compilation error when using packed pragma with vcc.Audun Wilhelmsen2014-03-181-1/+1
* Added support for {.packed.} pragma on objectsAudun Wilhelmsen2014-03-181-0/+20
* use g++ and clang++ automatically when compiling to C++Zahary Karadjov2014-03-161-22/+30
* resolved conflicts with masterAraq2014-01-181-1/+1
|\
| * Fixes #594Dominik Picheta2013-12-281-1/+1
* | case consistency: cs:partial bootstraps on windowsAraq2013-12-291-6/+6
* | case consistency part 4Araq2013-12-271-49/+49
* | case consistency part 1Araq2013-12-271-9/+9
|/
* Allows passing absolute paths for output. Refs #738.Grzegorz Adam Hankiewicz2013-12-201-1/+2
* Use quoteShell in stdlib, where appropriate.Michał Zieliński2013-12-111-16/+16
* always call the linker; fixes #660Araq2013-11-191-1/+1
* 'noStackFrame' implies 'naked' in the generated C codeAraq2013-10-061-3/+6
* support for multiple modules of the same name; niminst supports 'platforms'; ...Araq2013-09-241-4/+4
* better support for GNU's assemblerAraq2013-09-031-2/+3
* bugfix: -o option doesn't crash the compiler anymoreAraq2013-07-011-3/+3
* Merge branch 'master' into newparserAraq2013-05-071-1/+1
|\
| * don't perform unnecessary linkingZahary Karadjov2013-05-051-1/+1
* | --out works for exesAraq2013-05-011-1/+3
|/
* bugfix: fix linking when symbol files are usedZahary Karadjov2013-04-081-1/+1
* better error message when C compilation failsAraq2013-03-191-2/+7
* fixes #257Araq2013-03-181-27/+28
* Removes executable bit for text files.Grzegorz Adam Hankiewicz2013-03-161-0/+0
* [caas] first version that actually works (still has a lot of logical memory l...Zahary Karadjov2012-11-281-4/+13
* first steps for overloading support of passing blocks; bugfix: test results o...Araq2012-09-111-1/+1
* openarray/varargs split; breaks bootstrappingAraq2012-08-161-2/+2
* improved cross-compilation supportAraq2012-07-091-2/+6
* cross-compilation improvementsAraq2012-07-081-17/+32
* bugfix: ha.echo should be acceptedAraq2012-07-081-4/+6
* fixes for the Intel C compiler on WindowsZahary Karadjov2012-06-271-6/+6
* better support for unsigned integers.Zahary Karadjov2012-06-111-1/+1
* win64 is a supported target; bugfix: nimrod c -r on windows; stdlib uses wid...Araq2012-03-041-1/+1
* niminst: diverse improvements; fixes #80Araq2012-01-131-9/+24
* year 2012 for most copyright headersAraq2012-01-021-1/+1
* generated scripts do no contain paths anymore; regenerated C sourcesAraq2011-12-231-8/+15
* code gen can generate code to keep alive stack rootsAraq2011-12-221-6/+6
* cleaned up configuration file handling and documented the new behaviourAraq2011-11-301-53/+51
* compiler uses new 'readLine'Araq2011-11-271-2/+2
* New algorithm for locating and loading nimrod config files.Zahary Karadjov2011-11-251-232/+318
* bugfix: new GCC version requires -ldl to come after object filesAraq2011-11-031-5/+5
* compilation cache: DLL interfacing now worksAraq2011-10-271-1/+1
* bugfixes for ROD file generation; nimcache dir is now flatAraq2011-10-201-1/+1
n608'>608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859