source: Main/trunk/bcc.sh@ 372

Last change on this file since 372 was 249, checked in by Nishi, on Oct 4, 2024 at 5:59:55 AM

fix vc6

  • Property svn:executable set to *
  • Property svn:keywords set to Id
File size: 1.3 KB
Line 
1#!/bin/sh
2# $Id: bcc.sh 249 2024-10-03 20:59:55Z nishi $
3# Wrapper for CL. VC6 sucks.
4
5outfile="a.out"
6dowhat=""
7options="-I../VC6Compat -tWM -I$BORLAND/Include -L$BORLAND/Lib"
8obj=0
9source=""
10libraries=""
11link=""
12shared=0
13
14for i in "$@"; do
15 if [ "$i" = "-o" ]; then
16 dowhat="output"
17 elif [ "$i" = "-I" ]; then
18 dowhat="include"
19 elif [ "$i" = "-c" ]; then
20 options="$options -c"
21 obj=1
22 elif [ "$i" = "-fPIC" ]; then
23 :
24 elif [ "$i" = "-g" ]; then
25 :
26 elif [ "$i" = "-std=c99" ]; then
27 :
28 elif [ "$i" = "-shared" ]; then
29 options="$options -tWD"
30 shared=1
31 elif [ "$i" = "-mwindows" ]; then
32 options="$options -tW"
33 elif [ "`echo "$i" | grep -Eo "^-D"`" = "-D" ]; then
34 options="$options -`echo "$i" | sed "s/^-//g"`"
35 elif [ "`echo "$i" | grep -Eo "^-l"`" = "-l" ]; then
36 if [ ! "$i" = "-lwsock32" -a ! "$i" = "-luser32" -a ! "$i" = "-lcomctl32" ]; then
37 libraries="$libraries `echo "$i" | sed "s/^-l//g"`.lib"
38 fi
39 elif [ "$dowhat" = "output" ]; then
40 dowhat=""
41 outfile="$i"
42 elif [ "$dowhat" = "include" ]; then
43 dowhat=""
44 options="$options -I$i"
45 elif [ ! "`echo "$i" | grep -Eo "^."`" = "-" ]; then
46 source="$source $i"
47 fi
48done
49if [ "$obj" = "1" ]; then
50 options="$options -o$outfile"
51else
52 options="$options -e$outfile"
53fi
54if [ ! "$libraries" = "" ]; then
55 link="$libraries"
56fi
57construct="bcc32 $options $source $link"
58echo "Run: $construct"
59$construct
Note: See TracBrowser for help on using the repository browser.