Bug 44242 - vms-crt0*.c should compile with gcc
Summary: vms-crt0*.c should compile with gcc
Status: RESOLVED FIXED
Alias: None
Product: gcc
Classification: Unclassified
Component: target (show other bugs)
Version: 4.5.0
: P3 normal
Target Milestone: ---
Assignee: Not yet assigned to anyone
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-05-22 14:34 UTC by Jay
Modified: 2012-04-10 13:54 UTC (History)
2 users (show)

See Also:
Host: i686-apple-darwin9
Target: alpha-dec-vms
Build: i686-apple-darwin9
Known to work:
Known to fail:
Last reconfirmed:


Attachments
fix vms-crt0*.c to compile with gcc (1.87 KB, patch)
2010-05-22 14:38 UTC, Jay
Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Jay 2010-05-22 14:34:09 UTC
vms-crt0-64.c
vms-crt0.c
vms-psxcrt0-64.c
vms-psxcrt0.c

currently are slightly DEC C specific and they are set to not compiler, or maybe to compile with DEC C, it is unclear (the comments say one thing, the code appears different).


It is easy to make this code compile with gcc (and still DEC C).


The code is doing two things.
  Establishing a handler. 
  Converting "short" char** to "long" char**.


"Short" char** can be replaced by int* and casting.
The strdup calls are not needed (and therefore not #include string.h).


The "handler" stuff can have #ifdef __DECC around it.


While at it, this is also a good place, in the 64bit version, for the global char** environ to be instantiated and assigned to.


decc$ga_environ is an array of 32 bit pointers, can be handled in vms-crtl.h but not vms-crtl-64.h.
Comment 1 Jay 2010-05-22 14:38:14 UTC
Created attachment 20725 [details]
fix vms-crt0*.c to compile with gcc

(surely these four files can be merged down to one, with #if, and possibly the t-* fragment belongs in config.gcc?)
Comment 2 gingold@gcc.gnu.org 2010-09-24 08:46:39 UTC
Author: gingold
Date: Fri Sep 24 08:46:36 2010
New Revision: 164587

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=164587
Log:
2010-09-09  Tristan Gingold  <gingold@adacore.com>

	PR target/44242
	* config/vms/vms-crt0-64.c: Removed.
	* config/vms/vms-crt0.c: Removed.
	* config/vms/vms-psxcrt0-64.c: Removed.
	* config/vms/vms-psxcrt0.c: Removed.
	* config/vms/vms-ucrt0.c: New file.
	* config/vms/t-vms64: Removed.
	* config/vms/t-vms (VMS_EXTRA_PARTS): Uncomment it.  Remove DECC.
	Use $(GCC_FOR_TARGET) to build pcrt0.o and vcrt0.o
	* config.gcc (alpha-dec-vms): Use t-vms.


Added:
    trunk/gcc/config/vms/vms-ucrt0.c
Removed:
    trunk/gcc/config/vms/t-vms64
    trunk/gcc/config/vms/vms-crt0-64.c
    trunk/gcc/config/vms/vms-crt0.c
    trunk/gcc/config/vms/vms-psxcrt0-64.c
    trunk/gcc/config/vms/vms-psxcrt0.c
Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/config.gcc
    trunk/gcc/config/vms/t-vms
Comment 3 gingold@gcc.gnu.org 2012-04-10 13:54:40 UTC
Fixed by the rework.