source: Main/trunk/vc6.sh@ 368

Last change on this file since 368 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.4 KB
Line 
1#!/bin/sh
2# $Id: vc6.sh 249 2024-10-03 20:59:55Z nishi $
3# Wrapper for CL. VC6 sucks.
4
5outfile="a.out"
6dowhat=""
7options="/I../VC6Compat"
8obj=0
9win=0
10source=""
11libraries=""
12link=""
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 /LD"
30 elif [ "$i" = "-mwindows" ]; then
31 win=1
32 elif [ "`echo "$i" | grep -Eo "^-D"`" = "-D" ]; then
33 options="$options /`echo "$i" | sed "s/^-//g"`"
34 elif [ "`echo "$i" | grep -Eo "^-l"`" = "-l" ]; then
35 if [ "$i" = "-luser32" ]; then
36 libraries="$libraries gdi32.lib"
37 fi
38 libraries="$libraries `echo "$i" | sed "s/^-l//g"`.lib"
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 /Fo$outfile"
51else
52 options="$options /Fe$outfile"
53fi
54if [ ! "$libraries" = "" ]; then
55 link="/link /nodefaultlib:libc $libraries"
56fi
57if [ "$obj" = "0" ]; then
58 if [ "$win" = "1" ]; then
59 link="$link /SUBSYSTEM:windows"
60 fi
61fi
62construct="cl /nologo $options $source $link"
63echo "Run: $construct"
64$construct
Note: See TracBrowser for help on using the repository browser.