summary refs log tree commit diff stats
path: root/lib/system/dyncalls.nim
Commit message (Expand)AuthorAgeFilesLines
* don't raise exception in the default handler (#9783)alaviss2018-11-221-7/+0
* Avoid memory allocation during dynlib loading (#9320)LemonBoy2018-10-121-4/+4
* Nintendo switch support (#8069)Joey2018-06-271-0/+18
* Fixes #7212, now with better code (#7302)Simon Krauter2018-03-061-0/+7
* breaking change: arrays of char do not convert to cstring; ptr to array of ch...Andreas Rumpf2017-10-101-1/+4
* support for the Genode OS framework (#5560)Emery Hemingway2017-03-311-0/+11
* make tests green againAndreas Rumpf2017-02-081-1/+1
* make tests green againAndreas Rumpf2017-02-081-2/+5
* Display hint for -d:nimDebugDlOpen on load failureFelix Krause2016-10-031-0/+2
* Fixed compilation error with -d:nimDebugDlOpenFelix Krause2016-10-031-1/+2
* prefer consts to importing #defines from headersJacek Sieka2016-06-061-3/+6
* Replace csprintf() in windows version of nimGetProcAddr to pure nim's impleme...cheatfate2016-03-311-2/+23
* Windows: fixes a regression; codegen might not know about & at this pointAraq2016-03-291-2/+3
* Makes dyncall errors report to stderr. Fixes #3987Alex Berghage2016-03-291-7/+7
* do not print spurious warnings when dlopen fails; can be re-enabled with -d:n...Andreas Rumpf2015-12-291-3/+4
* Print out more detailed error messages when compilation failsdfdeshom2015-11-261-1/+3
* Add 'auto-decoration' to nimGetProcAddrjyelon2015-11-111-1/+6
* system/dyncalls: OS X is already handled as posixAdam Strzelecki2015-10-221-36/+0
* Trim trailling spacesSergey Avseyev2015-06-261-3/+2
* lib/system/a-e - Dropped 'T' from typespdw2015-06-041-18/+18
* Fix typosFederico Ceratto2015-02-151-1/+1
* lots of C++ codegen improvementsAraq2015-02-071-2/+4
* C++ support: codegen generates C++'s references and avoids copiesAraq2015-02-041-2/+7
* system files use new identifiersAraq2014-08-231-1/+1
* the big renamefest: first stepsAraq2014-08-221-1/+1
* case consistency for linuxAraq2013-12-291-2/+2
* case consistency part 1Araq2013-12-271-6/+7
* Removes executable bit for text files.Grzegorz Adam Hankiewicz2013-03-161-0/+0
* year 2012 for most copyright headersAraq2012-01-021-1/+1
* further steps for thread support; bootstrapping should require unzip C source...Araq2011-05-161-0/+5
* gc tweaking to gain a few percent of performanceAraq2011-05-071-3/+1
* inlining of the write barrier for dllsAndreas Rumpf2010-08-081-1/+4
* before stack init changeAndreas Rumpf2010-08-011-18/+22
* handling of compiler procs improved for DLL generationAndreas Rumpf2010-07-291-1/+6
* fixed pango/pangoutils new wrappersAndreas Rumpf2010-02-261-0/+0
* continued work on html/xmlparserrumpf_a@web.de2010-02-141-0/+0
* BUGFIX: better error message when loading of dynamic lib proc failsAndreas Rumpf2009-12-091-1/+4
* added tools and web dirsAndreas Rumpf2009-09-151-0/+0
* version0.7.10Andreas Rumpf2009-06-081-0/+124
ref='#n452'>452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 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