search for: zomf

Displaying 3 results from an estimated 3 matches for "zomf".

Did you mean: omf
2017 Jan 22
7
os/2 support using Watcom
The attached set of patches adds support for OS/2 using Watcom compiler (tested with Open Watcom 1.9). My only interest was building a working dll (the last patch in the set adds a makefile for it), therefore I did not touch other places: If there is interest, I can do so. Regards. -- O.S. -------------- next part -------------- A non-text attachment was scrubbed... Name:
2017 Jan 22
0
os/2 support using Watcom
...(the last patch in the set adds a makefile for it), therefore I did > not touch other places: If there is interest, I can do so. Most of the patches can have s/__EMX__/__OS2__/ excepting the nasm.h one. nasm.h should test for OBJ_FORMAT_obj as obj is also correct when building with GCC flags -Zomf. Not sure about the assembly prefix as generally cdecl is correct for OS/2, perhaps test for defined (__WATCOMC__) && defined (__OS2__) Will the GCC built flac8.dll link with Watcom with something like diff --git a/include/FLAC/export.h b/include/FLAC/export.h index d52f0bb..96d5422 1006...
2017 Jan 22
0
os/2 support using Watcom
...t > types. Pretty sure it's missing other math stuff as well. I see (but keeping the EMX checks won't hurt either) > >> >>> excepting the nasm.h one. >>> nasm.h should test for OBJ_FORMAT_obj as obj is also correct when >>> building with GCC flags -Zomf. >> >> OK, that can easily be added to configury, but.. > > Please. Will cook something for it, > >> >>> Not sure about the assembly prefix as >>> generally cdecl is correct for OS/2, perhaps test for defined >>> (__WATCOMC__) && def...