summaryrefslogtreecommitdiffstats
path: root/gnu
Commit message (Collapse)AuthorAgeFilesLines
* Compile fbsd-threads.c. Amongst others this is necessary for a workingmarius2011-08-062-0/+3
| | | | | | | | kgdb(1). Reviewed by: marcel Approved by: re (kib) MFC after: 1 week
* Update dialog to 1.1-20110707.nwhitehorn2011-07-141-5/+5
|
* Provide a simple manual page for libprocstat(3).pluknet2011-07-121-0/+1
| | | | Reviewed by: jilles, gjb
* Simply post r222273.obrien2011-06-081-3/+1
|
* Added FreeBSD 8.3.ru2011-06-081-0/+1
|
* Pull up all vendor changes to mdoc(7).ru2011-06-081-2/+0
| | | | | | | | | This also replaces the local fix in r219209 that made .Ac emit ASCII angle quotes with an official fix. In the official fix, ASCII quotes are output when using the .Aq, .Ao and .Ac calls, but only when nested into the .An macro. PR: gnu/154822
* Revert r222363, as bde@ pointed out the initial solution was far moreattilio2011-05-311-1/+1
| | | | correct.
* Style fix: cast to size_t rather than u_long when comparing to sizeof()attilio2011-05-271-1/+1
| | | | | | rets. Requested by: kib
* MFCattilio2011-05-262-2/+15
|\
| * Build and install a BSD licensed grep.obrien2011-05-252-2/+15
| | | | | | | | | | | | | | | | If WITH_BSD_GREP is not set, it will be 'bsdgrep' and GNUgrep will be '[ef]grep'. Otherwise, BSD-grep will be the grep family, and GNUgrep will be 'gnugrep'. Discussed with: brooks
* | MFCattilio2011-05-191-2/+4
|\ \ | |/
| * Implement WITH{,OUT}_{GCC,BINUTILS} to provide finer-grained controlimp2011-05-191-2/+4
| | | | | | | | | | | | | | over building gcc and binutils. They default to true, unless MK_TOOLCHAIN is no. Reviewed by: ru@
| * Disconnect sun4v architecture from the three.attilio2011-05-142-4/+0
| | | | | | | | | | | | | | | | | | Some files keep the SUN4V tags as a code reference, for the future, if any rewamped sun4v support wants to be added again. Reviewed by: marius Tested by: sbruno Approved by: re
* | MFCattilio2011-05-142-4/+0
| |
* | Commit the support for removing cpumask_t and replacing it directly withattilio2011-05-051-7/+11
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | cpuset_t objects. That is going to offer the underlying support for a simple bump of MAXCPU and then support for number of cpus > 32 (as it is today). Right now, cpumask_t is an int, 32 bits on all our supported architecture. cpumask_t on the other side is implemented as an array of longs, and easilly extendible by definition. The architectures touched by this commit are the following: - amd64 - i386 - pc98 - arm - ia64 - XEN while the others are still missing. Userland is believed to be fully converted with the changes contained here. Some technical notes: - This commit may be considered an ABI nop for all the architectures different from amd64 and ia64 (and sparc64 in the future) - per-cpu members, which are now converted to cpuset_t, needs to be accessed avoiding migration, because the size of cpuset_t should be considered unknown - size of cpuset_t objects is different from kernel and userland (this is primirally done in order to leave some more space in userland to cope with KBI extensions). If you need to access kernel cpuset_t from the userland please refer to example in this patch on how to do that correctly (kgdb may be a good source, for example). - Support for other architectures is going to be added soon - Only MAXCPU for amd64 is bumped now The patch has been tested by sbruno and Nicholas Esborn on opteron 4 x 12 pack CPUs. More testing on big SMP is expected to came soon. pluknet tested the patch with his 8-ways on both amd64 and i386. Tested by: pluknet, sbruno, gianni, Nicholas Esborn Reviewed by: jeff, jhb, sbruno
* Remove GNU man implemenation now that the BSD version has cooked for a while.gordon2011-04-2124-5170/+0
|
* Remove libobjc and other Objective-C related components, as these aredim2011-04-176-96/+1
| | | | | | extremely outdated, and not used by anything in the base system. Silence from: current@
* Update dialog to version 1.1-20110302.nwhitehorn2011-04-171-5/+6
|
* In r219639, SSSE3 instruction set support was backported to our gcc.dim2011-04-141-1/+1
| | | | | | | | Therefore, we also need to install the new tmmintrin.h header containing the related intrinsic functions, similar to xmmintrin.h, emmintrin.h, etc. Reported by: George Liaskos <geo.liaskos@gmail.com>
* Print the raw value of si_code, that is esp. useful for undecoded values.kib2011-03-261-3/+4
| | | | | Sponsored by: The FreeBSD Foundation MFC after: 1 week
* Change the load address from offset 0 in region 1 to offset 4G in region 0.marcel2011-03-222-3/+5
| | | | | | | | | | | | | This (almost) gives us the address space back (at the bottom) that we lost at the top. Region 0 has traditionally been reserved for IA-32 emulation, which has not been of great interest. By starting 64-bit processes at the 4G boundary we at least preserve some of the advantages: 1. Any invalid pointer cast (from int to pointer and back) will still always fail and not only when more than 4GB of memory is in use. 2. Memory sharing between 64-bit and 32-bit processes is still possibly by using addresses < 4G.
* Branch from contrib/binutils/ld/emulparams/elf64_ia64_fbsd.s so thatmarcel2011-03-221-0/+7
| | | | we can modify it.
* Fix typo: s/LIBSERACHPATH/LIBSEARCHPATH/gmarcel2011-03-219-11/+11
|
* Now that TLS is supported for sparc64 by both binutils 2.17.50 committedmarius2011-03-113-3/+3
| | | | in r218822 and rtld(1) committed in r219533 turn on TLS support in GCC.
* Merge binutils 2.17.50 to head. This brings a number of improvements todim2011-02-1856-6623/+9538
|\ | | | | | | | | | | | | | | | | x86 CPU support, better support for powerpc64, some new directives, and many other things. Bump __FreeBSD_version, and add a note to UPDATING. Thanks to the many people that have helped to test this. Obtained from: projects/binutils-2.17
| * Fix a missing underscore.nwhitehorn2010-12-091-1/+1
| |
| * For ia64, add a proper 'elf64-ia64-freebsd' output format to BFD, so thedim2010-12-051-2/+3
| | | | | | | | | | | | ELF branding for FreeBSD is done in the same way as amd64, i386 and sparc. Something similar should probably also be done for arm, mips and powerpc.
| *-. Sync: merge r215944 through r216132 from ^/head.dim2010-12-021-1/+3
| |\ \
| * \ \ Sync: merge r215464 through r215708 from ^/head.dim2010-11-221-3/+44
| |\ \ \ | | | |/ | | |/|
| * | | Sync: merge r215396 through r215463 from ^/head.dim2010-11-182-2/+2
| | | |
| * | | Sync: merge r215319 through r215395 from ^/head, so ports can actuallydim2010-11-166-33/+5
| | | | | | | | | | | | | | | | build! :)
| * | | Sync: merge r215273 through r215318 from ^/head.dim2010-11-145-7/+7
| | | |
| | | |
| | \ \
| *-. \ \ Sync: merge r215141 through r215188 from ^/head.dim2010-11-121-0/+4
| |\ \ \ \
| * \ \ \ \ Sync: merge r214895 through r215140 from ^/head.dim2010-11-1117-96/+123
| |\ \ \ \ \
| * | | | | | Simply our custom OSABI branding 'stub'. It is presently still neededdim2010-11-031-25/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | for ia64, but I will integrate it into contrib/binutils/bfd/elfxx-ia64.c later on, after which it can be removed entirely.
| * | | | | | Fix warnings in fbsd-threads.c.dim2010-11-011-2/+6
| | | | | | |
| * | | | | | For stuff under gnu/usr.bin/gdb, search contrib/binutils/include beforedim2010-11-011-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | contrib/gdb/include, since that contains newer versions of the same files.
| * | | | | | Update doc Makefile and texinfo config file.dim2010-11-012-7/+7
| | | | | | |
| * | | | | | Update config.h for ld.dim2010-11-011-99/+15
| | | | | | |
| * | | | | | Update Makefile and config.h for as.dim2010-11-012-85/+17
| | | | | | |
| * | | | | | Add manpages under gnu/usr.bin/binutils, since they are generated.dim2010-11-0112-0/+7367
| | | | | | |
| * | | | | | Update Makefile and config.h.bsd for libbinutils.dim2010-11-012-77/+18
| | | | | | |
| * | | | | | Update Makefile and config.h.bsd for libopcodes.dim2010-11-012-110/+45
| | | | | | |
| * | | | | | Update Makefile, bfd.h and config.h.bsd for libbfd.dim2010-11-016-169/+343
| | | | | | |
| * | | | | | Update Makefile and config.h for libiberty.dim2010-11-012-21/+84
| | | | | | |
| * | | | | | Update VERSION to 2.17.50 [FreeBSD] 2007-07-03.dim2010-11-011-1/+1
| | | | | | |
| * | | | | | Make sure elf_fbsd_post_process_headers() is actually called for ia64.dim2010-10-263-8/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is done by prepending the file to elfxx-ia64, not appending it. Additionally, reduce diffs between Makefile.amd64 and Makefile.ia64; instead of echo'ing defines in Makefiles, just add the needed define to elf-fbsd-brand.c directly, as it is only used for amd64 and ia64.
| * | | | | | Most of binutils now compiles at WARNS=3, except for libiberty anddim2010-10-2213-14/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | libbfd, which still need WARNS=2.
| * | | | | | In case of powerpc64, enable HAVE_LD_NO_DOT_SYMS in gcc's auto-host.h.dim2010-10-221-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Requested by: nwhitehorn
| * | | | | | Update gcc's auto-host.h header for binutils 2.17: turn ondim2010-10-221-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | HAVE_COMDAT_GROUP, HAVE_GAS_WEAKREF and HAVE_LD_SYSROOT.
OpenPOWER on IntegriCloud