dotgnu-pnet-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Dotgnu-pnet-commits] CVS: pnet/cscc cscc.c,1.34,1.35


From: Rhys Weatherley <address@hidden>
Subject: [Dotgnu-pnet-commits] CVS: pnet/cscc cscc.c,1.34,1.35
Date: Thu, 03 Jul 2003 06:28:13 -0400

Update of /cvsroot/dotgnu-pnet/pnet/cscc
In directory subversions:/tmp/cvs-serv15117/cscc

Modified Files:
        cscc.c 
Log Message:


Change the default output file from "a.out.exe" to "a.exe" (Win32)
or "a.out" (non-Win32), to be consistent with gcc.


Index: cscc.c
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnet/cscc/cscc.c,v
retrieving revision 1.34
retrieving revision 1.35
diff -C2 -r1.34 -r1.35
*** cscc.c      3 Jul 2003 01:27:54 -0000       1.34
--- cscc.c      3 Jul 2003 10:28:10 -0000       1.35
***************
*** 470,481 ****
                if(executable_flag)
                {
!                       /* The default output filename is "a.out.dll" or 
"a.out.exe" */
                        if(shared_flag)
                        {
!                               output_filename = "a.out.dll";
                        }
                        else
                        {
!                               output_filename = "a.out.exe";
                        }
                }
--- 470,485 ----
                if(executable_flag)
                {
!                       /* The default output filename is "a.dll" or 
"a.exe/a.out" */
                        if(shared_flag)
                        {
!                               output_filename = "a.dll";
                        }
                        else
                        {
!                       #ifdef IL_WIN32_PLATFORM
!                               output_filename = "a.exe";
!                       #else
!                               output_filename = "a.out";
!                       #endif
                        }
                }





reply via email to

[Prev in Thread] Current Thread [Next in Thread]