9f13ead922
* as.h: GNU c provides unlink() function. Unify section handling on openVMS/Alpha: * config/tc-alpha.c(s_alpha_link): Remove. (s_alpha_section): New function. Remove case-hacking of symbols Add .code_address pseudo-op. (BFD_RELOC_ALPHA_CODEADDR): New relocation. (s_alpha_code_address): New function. (alpha_ctors_section, alpha_dtors_section): New sections for C++ static constructors/destructors. Add debug code for crash debugs, to be removed when traceback code is added to object code. (s_alpha_name): New function for .name pseudo-op. (alpha_print_token): New function to print token expressions with alpha specific extensions. * makefile.vms: Allow compilation with current gcc snapshot.
53 lines
1.7 KiB
Text
53 lines
1.7 KiB
Text
#
|
|
# makefile for gas
|
|
#
|
|
# Created by Klaus K"ampf, kkaempf@progis.de
|
|
#
|
|
|
|
ifeq ($(CC),gcc)
|
|
DEFS=
|
|
CFLAGS=/cc1="-fno-exceptions -g0"/include=([],[-.bfd],[.config],[-.include],[-])$(DEFS)
|
|
LFLAGS=
|
|
LIBS=,GNU:[000000]LIBGCC2/lib,GNU:[000000]LIBGCCLIB/lib,\
|
|
sys$$library:vaxcrtl.olb/lib,GNU:[000000]crt0.obj
|
|
else
|
|
DEFS=/define=("table_size_of_flonum_powers_of_ten"="tabsiz_flonum_powers_of_ten",\
|
|
"_bfd_generic_get_section_contents_in_window"="_bfd_generic_get_win_section_cont",\
|
|
"_elf_section_from_bfd_section"="_bfd_elf_sec_from_bfd_sec","const=")
|
|
CFLAGS=/noopt/debug/include=([],[-.bfd],[.config],[-.include],[-])$(DEFS)\
|
|
/warnings=disable=(missingreturn,implicitfunc,ptrmismatch,undefescap,longextern,duptypespec)
|
|
LFLAGS=
|
|
LIBS=
|
|
endif
|
|
|
|
OBJS=targ-cpu.obj,obj-format.obj,atof-targ.obj,app.obj,as.obj,atof-generic.obj,\
|
|
bignum-copy.obj,cond.obj,expr.obj,flonum-konst.obj,flonum-copy.obj,\
|
|
flonum-mult.obj,frags.obj,hash.obj,input-file.obj,input-scrub.obj,\
|
|
literal.obj,messages.obj,output-file.obj,read.obj,subsegs.obj,symbols.obj,\
|
|
write.obj,listing.obj,ecoff.obj,stabs.obj,sb.obj,macro.obj
|
|
|
|
LIBIBERTY = [-.libiberty]libiberty.olb
|
|
LIBBFD = [-.bfd]libbfd.olb
|
|
LIBOPCODES = [-.opcodes]libopcodes.olb
|
|
|
|
|
|
as.exe: $(OBJS) $(LIBOPCODES) $(LIBBFD) $(LIBIBERTY)
|
|
link$(LFLAGS)/exe=$@ $(OBJS),$(LIBOPCODES)/lib,$(LIBBFD)/lib,$(LIBIBERTY)/lib$(LIBS)
|
|
|
|
gasp.exe: gasp.obj $(LIBBFD) $(LIBIBERTY)
|
|
link$(LFLAGS)/exe=$@ gasp.obj,$(LIBBFD)/lib,$(LIBIBERTY)/lib$(LIBS)
|
|
|
|
targ-cpu.c: [.config]tc-alpha.c
|
|
copy $< $@
|
|
targ-cpu.h: [.config]tc-alpha.h
|
|
copy $< $@
|
|
targ-env.h: [.config]te-generic.h
|
|
copy $< $@
|
|
obj-format.h: [.config]obj-evax.h
|
|
copy $< $@
|
|
obj-format.c: [.config]obj-evax.c
|
|
copy $< $@
|
|
atof-targ.c: [.config]atof-ieee.c
|
|
copy $< $@
|
|
|
|
targ-cpu.obj: targ-cpu.c targ-cpu.h [.config]atof-vax.c
|