elks-enhanced
public
Read
Owner: themaster
Branch: master
Commits: 6893
Updated: 2026-04-19 00:15
Git CLI clone URL
git clone https://www.xt-emporium.com/git/elks-enhanced.git
Fullscreen desktop URL
Code
Commits
History
Branches
Bug Reports
Discussions
Compare
Settings
elks-enhanced
/
elks
/
tools
/
objtools
/
ewcc
File editor
#!/usr/bin/env bash # # ewcc - OpenWatcom owcc/wcc script for ELKS # # Usage: ewcc [-{owcc option}] [--{option}(wcc -Wc,option)] file.c ... # produces filename.obj # # 3 Jun 2024 Initial version # 3 Jul 2024 Added -options for owcc and --options for wcc # set -e if [ -z "$TOPDIR" ] then echo "ELKS TOPDIR= environment variable not set" exit 1 fi if [ -z "$WATCOM" ] then echo "WATCOM= environment variable not set" exit 1 fi ELKSLIBCINCLUDE=$TOPDIR/libc/include ELKSINCLUDE1=$TOPDIR/elks/include ELKSINCLUDE2=$TOPDIR/libc/include/watcom # owcc options: # -bnone # no target specific setup # -mcmodel={s,m,c,l} # memory model # -march=i86 # 8086 codegen # -std=c99 # -Wc,-za99 # -fsigned-char # -Wc,-j plain char is signed (as gcc) # -msoft-float # -Wc,-fpc (non-IEEE software fp) # -Wc,-zev # enable void arithmetic # -Wc,-zls # remove automatically inserted symbols # -Wc,-wcd=N # disable warning N # -Wc,-x # ignore INCLUDE environment variable # -Wc,-r # save/restore segment registers # -fnostdlib # don't refere standard libraries # unused: # -fno-stack-check # don't generate stack check code # -ztNum # specify far data threshold (default 32767, or 256 if no Num) # -Wc,-fpi87 # generate inline 8087 hardware fp # -mhard-emu-float # -Wc,-fpi (inline 8087 w/emulation) # -fpmath=87 # produce code for 8087 FPU # -mabi=cdecl # push all args # -fnonconst-initializers # -Wc,aa source $TOPDIR/libc/watcom.model CCFLAGS="\ -bnone \ -mcmodel=$MODEL \ -march=i86 \ -Os \ -std=c99 \ -fsigned-char \ -msoft-float \ -Wc,-zev \ -Wc,-zls \ -Wc,-x \ -fnostdlib \ -Wall -Wextra \ -Wc,-wcd=303 \ -I$ELKSLIBCINCLUDE \ -I$ELKSINCLUDE1 \ -I$ELKSINCLUDE2 \ " while true; do case "$1" in --*) a=${1:1} #echo "Adding -Wc,$a" CCFLAGS="$CCFLAGS -Wc,$a" shift ;; -*) #echo "Adding $1" CCFLAGS="$CCFLAGS $1" shift ;; *) break ;; esac done if [ $# -eq 0 ] then echo "Usage: ewcc [-{owcc option}] [--{option}(wcc -Wc,option)] file.c ..." exit fi for PROG in $@ do echo owcc -c $CCFLAGS -o ${PROG%.c}.obj $PROG owcc -c $CCFLAGS -o ${PROG%.c}.obj $PROG done # dump OBJ file #omfdump ${PROG%.c}.obj # disassemble OBJ file #wdis -p -e ${PROG%.c}.obj
Commit message
This repository is read-only for this account.
Repository snapshot
Current branch
master
Visibility
public
Your access
Read
Remote
Configured
File activity
View file history