summary refs log tree commit diff stats
path: root/compiler/extccomp.nim
Commit message (Expand)AuthorAgeFilesLines
...
* with dir with space regression againAraq2017-01-291-1/+1
* fixes serious regression that was introduced in the handling of .compile pragmaAraq2017-01-281-8/+8
* make tests green againAndreas Rumpf2017-01-281-1/+1
* .compile pragma supports patterns and actionsAraq2017-01-281-59/+83
* make Nim compiler compile with 0.15.2Araq2017-01-071-3/+6
* Merge branch 'devel' into sighashesAraq2016-12-171-2/+8
|\
| * Use ``out`` compiler option when linking static libraryAnatoly Galiulin2016-12-161-2/+8
* | Merge branch 'devel' into sighashesAraq2016-12-141-42/+102
|\|
| * Nim compiler generates nimcache/proj.json for easier interop with external bu...Araq2016-12-141-42/+101
* | Merge branch 'devel' into sighashesAraq2016-12-011-1/+1
|\|
| * fixes the regressions introduced by fix for #5076Araq2016-11-301-1/+1
* | use a full MD5 hash with no collision detection for proc namesAraq2016-11-081-3/+3
|/
* remove unused stuffJacek Sieka2016-08-091-4/+0
* stdlib and compiler don't use .immediate anymoreAndreas Rumpf2016-07-291-1/+1
* --listCmd also needs to affect linking stepAndreas Rumpf2016-07-131-1/+1
* better debugging support for native debuggers; changed name mangling; fixes #...Araq2016-05-101-0/+4
* Fixes #3871Yuriy Glukhov2016-02-161-0/+2
* remove echo() from compilerAman Gupta2015-10-011-2/+2
* remove "rerun with --parallelBuild:1" message and show error inlineAman Gupta2015-09-301-12/+13
* Improved "Execution of an external program failed" message.Dominik Picheta2015-09-271-4/+6
* update Visual Studio command line flagsAraq2015-08-271-1/+1
* cValidAssemblers -> const setrku2015-08-101-1/+5
* Added fasm (external assembler) support.rku2015-07-311-2/+43
* Merge pull request #3020 from flaviut/rename-crc-to-hashAndreas Rumpf2015-07-051-8/+8
|\
| * CRC -> HashFlaviu Tamas2015-07-031-8/+8
* | Turn execExternalProgram msgs into hintExecutingAdam Strzelecki2015-07-031-12/+6
|/
* Fix #3018Flaviu Tamas2015-06-291-1/+1
* renamed writeln to writeLine in compilerpatrick dw2015-06-191-1/+1
* securehash: Keep module name consistentAdam Strzelecki2015-06-091-1/+2
* Use sha1 instead of crcFlaviu Tamas2015-05-261-4/+2
* Rename crc module to "secure_hash"Flaviu Tamas2015-05-231-1/+1
* Clean up crc moduleFlaviu Tamas2015-05-231-7/+7
* Merge pull request #2657 from def-/noreturnAndreas Rumpf2015-05-081-4/+4
|\
| * Implicitly assume compilers to know naked and noreturn attributesdef2015-05-071-4/+2
| * Distinguish only between __declspec and __attribute__def2015-05-051-6/+6
| * Pass noReturn pragma to C code.def2015-05-051-3/+5
* | Improve code style a bitdef2015-05-071-1/+1
* | Fix the lib path used with --app:staticlibdef2015-05-071-1/+2
|/
* fixes #2569Araq2015-04-231-49/+49
* Get rid of deprecation warningsdef2015-04-071-20/+20
* Add compiler-specific configuration options for all compilers.Philip Wernersbach2015-03-151-1/+10
* Fix #2247Flaviu Tamas2015-03-041-0/+3
* Fix a few more warningsdef2015-02-171-3/+3
* 'passL' is not smart anymore about already known switches; -ldl is now proper...Araq2015-02-131-10/+12
* stop after first failing C compilation for --parallelBuild:1Araq2015-02-091-1/+3
* list CC executions properly again for --parallelBuild:1Araq2015-02-051-3/+7
* 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
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