summary refs log tree commit diff stats
path: root/lib/nimbase.h
Commit message (Expand)AuthorAgeFilesLines
* Merge pull request #2225 from dyu/freebsdAndreas Rumpf2015-03-081-0/+2
|\
| * compile nim on freebsddyu2015-02-271-0/+2
* | prevent name mangling for C++ DLLsAraq2015-03-051-5/+13
|/
* merged #2083 manuallyAraq2015-02-081-1/+10
* Happy new year!Guillaume Gelin2015-01-061-1/+1
* implemented mixed mode codegenAraq2014-10-031-2/+8
* implemented locking levels; still incompleteAraq2014-09-271-0/+2
* Fix the C++ exception struct in nimbase.h.Reimer Behrends2014-09-211-2/+2
* added stack overflow preventionAraq2014-07-161-1/+2
* Fix typo in previous commit.ReneSac2014-04-061-1/+1
* fix #971Zahary Karadjov2014-03-101-0/+3
* Added comment explaining 'assert_numbits' error.ReneSac2014-03-061-0/+3
* implemented 'union' and 'unchecked' pragmasAraq2014-03-051-2/+2
* --os:standalone works againAraq2013-06-301-109/+1
* fixes #466Araq2013-06-061-2/+2
* nimbase.h doesn't need signal.hSimon Hafner2013-05-181-2/+1
* Removes executable bit for text files.Grzegorz Adam Hankiewicz2013-03-161-0/+0
* documented object constrs; endb works againAraq2013-03-091-3/+3
* fixes nimrtl compilationZahary Karadjov2013-01-281-2/+2
* adds an option to interleave the generated code with snippets from the origin...Zahary Karadjov2012-12-021-0/+11
* fixes #256 (I hope)Araq2012-11-201-1/+1
* bugfix: wrong assertions for C++ code generation; some solaris support; first...Araq2012-10-301-0/+2
* fixes 182Araq2012-08-021-1/+1
* more reliable NI/NU definitionsAraq2012-07-281-0/+18
* fixes #172Araq2012-07-251-6/+6
* Fixed math.round, added math.ceil and fixed times.format.Dominik Picheta2012-06-041-1/+1
* codegen for C++ exceptionsZahary Karadjov2012-06-031-0/+7
* further steps for closure supportAraq2012-02-061-5/+3
* implemented incompleteStruct pragma; embedded debugger works with posix moduleAraq2012-01-051-2/+4
* code gen can generate code to keep alive stack rootsAraq2011-12-221-0/+8
* bugfixes for .rod files and visual C++Araq2011-12-031-2/+2
* cgen: no type canon for integral types; osproc use posix_spawn instead of for...Araq2011-11-181-0/+5
* Added system.program_results for controlling the exit code of the program und...Zahary Karadjov2011-11-101-0/+2
* code generator supports constant sequences; more consistent compile time eval...Araq2011-10-071-1/+1
* support for C++ code generation; importcpp and importobjc pragmasAraq2011-08-071-4/+4
* further steps for thread support; bootstrapping should require unzip C source...Araq2011-05-161-26/+0
* basic thread support; still broken on Windows; untested on Mac OS XAraq2011-01-181-2/+7
* docgen understands and ignores *when false*Araq2010-11-181-1/+4
* fixes for exception handling; added system.compileOptionAraq2010-09-131-4/+8
* bugfix: init of tempsAraq2010-08-241-0/+11
* DLL generation of the stdlib for unixAndreas Rumpf2010-08-041-0/+2
* c2nim tool addedAndreas Rumpf2010-07-211-1/+1
* explicit types for generic routinesAndreas Rumpf2010-05-281-0/+7
* bugfix: complex.nim compilesAndreas Rumpf2010-04-041-1/+3
* fixed pango/pangoutils new wrappersAndreas Rumpf2010-02-261-0/+0
* continued work on html/xmlparserrumpf_a@web.de2010-02-141-0/+0
* better subscript overloadingrumpf_a@web.de2010-01-031-1/+1
* version 0.8.2rumpf_a@web.de2009-10-211-3/+3
* added tools and web dirsAndreas Rumpf2009-09-151-0/+0
* some fixes for DMCAndreas Rumpf2009-05-201-11/+11
561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 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 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962