diff options
author | Richard Stallman <rms@gnu.org> | 1992-03-07 18:47:32 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1992-03-07 18:47:32 +0000 |
commit | 6ab6f071765945426b9add40dc25d47f3e4391be (patch) | |
tree | 2b220cf3fbd6e2ed9f4d8c1c15ccf954665e330a | |
parent | ab27e96e2cc779c9d5caf9eba4c721321e40af51 (diff) | |
download | gcc-6ab6f071765945426b9add40dc25d47f3e4391be.zip gcc-6ab6f071765945426b9add40dc25d47f3e4391be.tar.gz gcc-6ab6f071765945426b9add40dc25d47f3e4391be.tar.bz2 |
*** empty log message ***
From-SVN: r413
-rw-r--r-- | gcc/make-gcc.com | 59 | ||||
-rw-r--r-- | gcc/make-l2.com | 6 |
2 files changed, 64 insertions, 1 deletions
diff --git a/gcc/make-gcc.com b/gcc/make-gcc.com index ff8ae23..c9afc94 100644 --- a/gcc/make-gcc.com +++ b/gcc/make-gcc.com @@ -24,5 +24,62 @@ $! libgcc2.olb. To install, extract all of the modules from libgcc2.olb and $! add them to gnu_cc:[000000]gcclib.olb. You may have to delete the eprintf $! and new modules from the gnu_cc:[000000]gcclib.olb, since libgcc2 supplies $! these same routines with different module names. -$! +$! +$! Set up the logical names to use the compiler that we just built. +$! +$ Procedure:='f$environment("PROCEDURE")' +$ Device:='f$parse(Procedure,,,"DEVICE","NO_CONCEAL")' +$ Directory:='f$parse(Procedure,,,"DIRECTORY","NO_CONCEAL")' +$ Path:="''Device'''Directory'" +$! +$! Check for "rooted" directory specs +$! +$ l = 'f$length(Path)' +$ tmp = 'f$locate(".][",Path)' +$ if 'tmp' .ne. 'l' then goto 10$ +$ tmp = 'f$locate(".><",Path)' +$ if 'tmp' .ne. 'l' then goto 10$ +$ goto 100$ +$! +$! Eliminate rooted directory specs +$! +$ 10$: +$ if "''f$extract(tmp,255,Path)'" .eqs. ".][000000]" then goto 20$ +$ if "''f$extract(tmp,255,Path)'" .eqs. ".><000000>" then goto 20$ +$ l = tmp + 3 +$ Path:="''f$extract(0,tmp,Path)'.''f$extract(l,255,Path)'" +$ goto 100$ +$ 20$: +$ l = tmp + 1 +$ Path:="''f$extract(0,tmp,Path)'''f$extract(l,1,Path)'" +$ 100$: +$! +$! Calculate the prefix and suffix (used in generating desired paths) +$! +$ l = 'f$length(Path)' - 1 +$ Prefix:='f$Extract(0,l,Path)' +$ Suffix:='f$extract(l,1,Path)' +$! +$ gnu_cc_path:="''Prefix'.''Suffix'" +$! +$oldgcc=f$trnlnm("GNU_CC") +$ assign 'gnu_cc_path'/translation=concealed, - + 'f$trnlnm("GNU_CC")/translation=concealed GNU_CC +$! +$! Set the version number from version.opt. +$! +$open ifile$ version.opt +$read ifile$ line +$close ifile$ +$ijk = f$locate("=",line) + 1 +$line='f$extract(ijk,255,line) +$assign 'line' gnu_cc_version +$! +$! Now build gcclib2.olb +$! $@make-l2 +$! +$! Deassign logical names. +$! +$deassign gnu_cc_version +$deassign gnu_cc diff --git a/gcc/make-l2.com b/gcc/make-l2.com index fb5a3aa..c9d6a3c 100644 --- a/gcc/make-l2.com +++ b/gcc/make-l2.com @@ -7,6 +7,12 @@ $! have the current compiler installed, otherwise some of the builtins will $! not be recognized. Once you have built libgcc2.olb, you can merge this $! with gnu_cc:[000000]gcclib.olb $! +$if f$extract(0,1,f$trnlnm("GNU_CC_VERSION")).nes."1" then goto compile +$! +$write sys$output "This must be compiled by gcc 2.0" +$exit +$! +$compile: $lib/create libgcc2.olb $call compile_libgcc2 "L_muldi3" $call compile_libgcc2 "L_divdi3" |