site logo  WatcomPage

HomePage | Categories |* BLOG *| RecentChanges | RecentlyCommented | Login/Register
Open Watcom Website
OW Coding Style Guide
Open Watcom Build Servers
Recent changes submitted

Example setvars.cmd file

Open Watcom Icons

MiscOWLinks:

Makefile I
Makefile II
The un*x to OS/2-EMX Porting FAQ
The POSIX/2 Project
IBM Library Server Library
Aquarius Software Workframe V3 Integration project.
Getting started with OW by Gordon Snider

OS/2 Toolkit Programming Books, OS/2 DDK Programming Books, and IBM Visual Age C/C++ Programming Books they are available on the WarpSpeed site in HTML format.

Discussion Groups:
News server: news.openwatcom.org

Groups on Google:
openwatcom.users.c_cpp
openwatcom.contributors
openwatcom.users.fortran

ow image

19 March 2008:
Japheth's side project: Wasm v1.7j is a fork of Open Watcom's WASM. The goal is to have a MASM v6 compatible open source version available.
http://www.japheth.de/wasm.html

Steven's wrc beta, works more like IBM rc:
http://svn.netlabs.org/fm2/ticket/131
A better version included in the 1.8 tree? Not sure.

Old stuff:

01 April 07
_pipe
_popen

28 March 07
I ran into a problem with getopt where OSs other than those defined __UNIX__ allow an alternate option character "/". This is in addition to the normal or POSIX option character " - ". Here is where this is set (getopt.c):

#ifdef __UNIX__
char __altoptchar = '-';
#else
char __altoptchar = '/'; // alternate option character
#endif

This causes the above mawk example to fail, so I do this before getopt() in OS/2:

The solution for non-__UNIX__ OSs is to do this:
extern char __altoptchar;
then:
__altoptchar = '-';


There are no comments on this page. [Add comment]

Valid XHTML 1.0 Transitional :: Valid CSS :: Powered by Wikka Wakka Wiki 1.1.6.7
Page was generated in 0.0950 seconds