-
Installer enable user to remove default host and default target installation.
It is correct function, but for users without OW knowledge it causes problems later because thay don't change OW setup fo…
-
```
The current inifile handler is not really flexible and don't allow us to
add entries to existing sections. This make the separation of the inifile
in sections quite pointless.
I suggest using Fr…
-
I am porting [Map](http://adoxa.altervista.org/map/index.html) to gcc-ia16 and it uses %Fp format specifiers to format far pointers. Support for this seems to be missing from your printf. Test case:
…
-
Relevant code: https://github.com/open-watcom/open-watcom-v2/blob/master/bld/dip/codeview/c/cvtype.c#L208
I'm helping get PC/GEOS building with OpenWatcom, and while sorting issues with our build p…
-
If template class declared in namespace, but defined outside namespace, Open Watcom can’t compile it. For example:
``` C++
namespace ns {
// declaration of class
template
class Templ;
}
// …
-
### Summary
When enabling loop optimizations (flag `-ol`) and performing 16-bit mode far pointer arithmetic in specific circumstances (see code below), the segment value of the resulting far pointe…
-
a possibility in another legacy operating system supporting the language, it is possible to compile for old microsoft DOS using [orange c compiler](https://ladsoft.tripod.com/orange_c_compiler.html).
-
I tried the current compiler with the RDOS project, but when building the drivers the boot process panics. This seems to be due to one of the drivers (http://www.rdos.net/svn/trunk/kernel/pcdev/pci.as…
-
Managed to bootstrap open Watcom with intels compiler.
If someone wants to toy with it heres a howto.
go into the build\mif directory and open the local.mif file with notepad++, scroll down to the b…
-
```
#include < iostream >
namespace X {
template void f(T);
}
namespace N {
using namespace X;
enum E { e1 };
void f(E) {
std::cout