<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src/gnu/lib/csu/Makefile, branch release/9.0.0</title>
<subtitle>FreeBSD source tree</subtitle>
<id>https://cgit-dev.freebsd.org/src/atom?h=release%2F9.0.0</id>
<link rel='self' href='https://cgit-dev.freebsd.org/src/atom?h=release%2F9.0.0'/>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/'/>
<updated>2010-08-23T22:24:11Z</updated>
<entry>
<title>MFtbemd:</title>
<updated>2010-08-23T22:24:11Z</updated>
<author>
<name>Warner Losh</name>
<email>imp@FreeBSD.org</email>
</author>
<published>2010-08-23T22:24:11Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=25faff346c8453b8248f99c7cff71708262faa37'/>
<id>urn:sha1:25faff346c8453b8248f99c7cff71708262faa37</id>
<content type='text'>
Prefer MACHNE_CPUARCH to MACHINE_ARCH in most contexts where you want
to test of all the CPUs of a given family conform.
</content>
</entry>
<entry>
<title>Teach our toolchain how to generate 64-bit PowerPC binaries. This fixes</title>
<updated>2010-07-10T02:29:22Z</updated>
<author>
<name>Nathan Whitehorn</name>
<email>nwhitehorn@FreeBSD.org</email>
</author>
<published>2010-07-10T02:29:22Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=2cf64c8006d7b7c6b122b7a492086a8cefe0f4d4'/>
<id>urn:sha1:2cf64c8006d7b7c6b122b7a492086a8cefe0f4d4</id>
<content type='text'>
a variety of bugs in binutils related to handling of 64-bit PPC ELF,
provides a GCC configuration for 64-bit PowerPC on FreeBSD, and
associated build systems tweaks.

Obtained from:	projects/ppc64
</content>
</entry>
<entry>
<title>Often reported issue with newer ld is:</title>
<updated>2010-06-18T11:09:51Z</updated>
<author>
<name>Konstantin Belousov</name>
<email>kib@FreeBSD.org</email>
</author>
<published>2010-06-18T11:09:51Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=15744a9c4c6235066e86becee23029f7d3ae5389'/>
<id>urn:sha1:15744a9c4c6235066e86becee23029f7d3ae5389</id>
<content type='text'>
error in /usr/lib/crtendS.o(.eh_frame); no .eh_frame_hdr table will be created.

The issue is that crtend is compiled with unwind table, and also it
places the special CIE into the .eh_frame indicating the end of section,
that is located before generated unwind table. New ld has assertion that
verifies that closing CIE is indeed the last CIE, causing the crypting
message to be issued, and refusing to generate dwarf unwind.

Add -fno-asynchronous-unwind-tables to disable unwind table generation
for crtbegin/crtend. While there, disable omitting the frame pointer [1].

Requested by:	kan [1]
Reviewed by:	kan
MFC after:	2 weeks
</content>
</entry>
<entry>
<title>Fix build when WITH_SSP is set explicitly.</title>
<updated>2009-02-21T15:04:31Z</updated>
<author>
<name>Ruslan Ermilov</name>
<email>ru@FreeBSD.org</email>
</author>
<published>2009-02-21T15:04:31Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=d9ca85fca7bd0972742fae2a4c2d0ae6269ec059'/>
<id>urn:sha1:d9ca85fca7bd0972742fae2a4c2d0ae6269ec059</id>
<content type='text'>
Submitted by:	Jeremie Le Hen
</content>
</entry>
<entry>
<title>Revert previous commit. The prototype has been moved to unistd.h</title>
<updated>2008-09-28T19:17:54Z</updated>
<author>
<name>Marcel Moolenaar</name>
<email>marcel@FreeBSD.org</email>
</author>
<published>2008-09-28T19:17:54Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=5f85c2cdd92db4f0d24f8863f00ff332f82c64a7'/>
<id>urn:sha1:5f85c2cdd92db4f0d24f8863f00ff332f82c64a7</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add -D_OSRELDATE_H to CFLAGS to prevent the declaration of</title>
<updated>2008-09-26T15:00:18Z</updated>
<author>
<name>Marcel Moolenaar</name>
<email>marcel@FreeBSD.org</email>
</author>
<published>2008-09-26T15:00:18Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=3e5dafac903700c63dd4139db4c025b97133befa'/>
<id>urn:sha1:3e5dafac903700c63dd4139db4c025b97133befa</id>
<content type='text'>
getosreldate() in assembler source files. We still get the
definition of __FreeBSD_version this way, because it's
outside the standard multiple-inclusion protection trick.

All this is specific to ia64.
</content>
</entry>
<entry>
<title>Enable GCC stack protection (aka Propolice) for userland:</title>
<updated>2008-06-25T21:33:28Z</updated>
<author>
<name>Ruslan Ermilov</name>
<email>ru@FreeBSD.org</email>
</author>
<published>2008-06-25T21:33:28Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=042df2e2dadea9f43b62b79ed97534c0eecf1dad'/>
<id>urn:sha1:042df2e2dadea9f43b62b79ed97534c0eecf1dad</id>
<content type='text'>
- It is opt-out for now so as to give it maximum testing, but it may be
  turned opt-in for stable branches depending on the consensus.  You
  can turn it off with WITHOUT_SSP.
- WITHOUT_SSP was previously used to disable the build of GNU libssp.
  It is harmless to steal the knob as SSP symbols have been provided
  by libc for a long time, GNU libssp should not have been much used.
- SSP is disabled in a few corners such as system bootstrap programs
  (sys/boot), process bootstrap code (rtld, csu) and SSP symbols themselves.
- It should be safe to use -fstack-protector-all to build world, however
  libc will be automatically downgraded to -fstack-protector because it
  breaks rtld otherwise.
- This option is unavailable on ia64.

Enable GCC stack protection (aka Propolice) for kernel:
- It is opt-out for now so as to give it maximum testing.
- Do not compile your kernel with -fstack-protector-all, it won't work.

Submitted by:	Jeremie Le Hen &lt;jeremie@le-hen.org&gt;
</content>
</entry>
<entry>
<title>Remove one more alpha leftover.</title>
<updated>2008-01-24T07:43:09Z</updated>
<author>
<name>Ruslan Ermilov</name>
<email>ru@FreeBSD.org</email>
</author>
<published>2008-01-24T07:43:09Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=c4579b502b3f8302512cfa534cce3d01a659dca1'/>
<id>urn:sha1:c4579b502b3f8302512cfa534cce3d01a659dca1</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Back out last commit -- it breaks sparc64 build which has</title>
<updated>2007-10-13T05:50:43Z</updated>
<author>
<name>Ruslan Ermilov</name>
<email>ru@FreeBSD.org</email>
</author>
<published>2007-10-13T05:50:43Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=281fc7f295dec417ad25427f0e03cb8bb942bd58'/>
<id>urn:sha1:281fc7f295dec417ad25427f0e03cb8bb942bd58</id>
<content type='text'>
more than one .c file in SRCS.
</content>
</entry>
<entry>
<title>Minor tweak to finding BEG/END source.</title>
<updated>2007-10-12T18:14:41Z</updated>
<author>
<name>David E. O'Brien</name>
<email>obrien@FreeBSD.org</email>
</author>
<published>2007-10-12T18:14:41Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=1d2c824f26e62f65c40a3427c273f84b6ed6ca7b'/>
<id>urn:sha1:1d2c824f26e62f65c40a3427c273f84b6ed6ca7b</id>
<content type='text'>
</content>
</entry>
</feed>
