Ben Gras 8b69d04fff csu: add code to call constructors to be used by clang
. clang-linked binaries were not calling global constructors, as the
	  code to do so wasn't in csu/ and linked
	. it does work for gcc as it uses its self-supplied crt{begin,end} code
	. this commit copies netbsd's crt{begin,end}.S, which contains
	  constructor/destructor calling code, called from .init and .fini
	  sections already accumulated by the linker. the _init function was already
	  called by the C startup code before calling main.
	. based on work by Antoine Leca
2011-11-20 20:20:51 +01:00
..
2011-11-14 10:07:49 +00:00
2011-11-09 14:43:25 +01:00
2011-11-18 11:11:04 +01:00
2011-11-14 14:47:42 +00:00
2011-11-14 10:07:49 +00:00
2011-06-23 19:25:36 +02:00
2011-11-14 10:07:49 +00:00
2011-11-14 10:07:49 +00:00
2011-11-14 10:07:49 +00:00
2011-08-01 14:32:14 +02:00
2011-07-27 09:30:26 +00:00
2011-11-14 14:21:39 +00:00
2011-11-14 11:53:05 +00:00
2011-11-14 10:07:49 +00:00
2011-11-14 10:07:49 +00:00
2011-11-15 17:14:57 +01:00
2011-11-14 10:07:49 +00:00
2011-11-20 18:36:42 +01:00
2011-11-18 16:22:25 +01:00
2011-11-18 11:49:21 +01:00

ack_build.sh - for ACK library building
gnu_build.sh - for GNU library building

ack_build.sh obj     - create objdirs for gnu libraries
ack_build.sh depend  - find dependencies of ack libraries
ack_build.sh all     - compile ack libraries
ack_build.sh install - compile and install ack libraries
ack_build.sh clean   - clean for ack libraries

gnu_build.sh obj     - create objdirs for gnu libraries
gnu_build.sh depend  - find dependencies of gnu libraries
gnu_build.sh all     - compile gnu libraries
gnu_build.sh install - compile and install gnu libraries
gnu_build.sh clean   - clean for gnu libraries