summaryrefslogtreecommitdiffstats
path: root/Rules.mak
Commit message (Collapse)AuthorAgeFilesLines
...
* Use -z relro/-z now on all libs, add some new variables needed later, move ↵Peter S. Mazinger2005-11-171-41/+41
| | | | common ldso/libdl parts to Rules.mak, remove strip from all TARGET_ARCH
* rename current stable linuxthreads to linuxthreads.old to prepare for import ↵Mike Frysinger2005-11-151-0/+4
| | | | of latest glibc version
* set default STRIP_FLAGS and change how we detect silent modeMike Frysinger2005-11-021-1/+3
|
* ASFLAGS does not need to include CFLAGS as well, compile.S does it alreadyPeter S. Mazinger2005-11-011-2/+1
|
* Do not add PICFLAG to generic CFLAGS, this is done based on suffix to ↵Peter S. Mazinger2005-11-011-4/+0
| | | | .os/.oS (Makerules)
* Add -o /dev/null to AS_NEEDED check linker script check, else a.out polution ↵Peter S. Mazinger2005-10-291-1/+1
| | | | all over the place
* Limit IMA compiling to gcc-4, gcc-3.4.4 can't cope w/ some sourcesPeter S. Mazinger2005-10-291-3/+3
|
* Add configure option to allow IMA compilingPeter S. Mazinger2005-10-291-1/+5
|
* Oops, missed commiting AS_NEEDED checkPeter S. Mazinger2005-10-281-0/+9
|
* Remove unused CFLAGS_NOPIC, use ?= some of check_gcc won't rerunPeter S. Mazinger2005-10-281-16/+14
|
* Moved the use of --combine to CFLAGS, we need it for debugging tooPeter S. Mazinger2005-10-271-13/+13
|
* Hope to catch --combine flag properly on all gcc versionsPeter S. Mazinger2005-10-271-2/+13
|
* Remove comment, I corrected the order already.Peter S. Mazinger2005-10-271-2/+0
|
* Add -fcombine check to allow IMA compiling w/ gcc 4.xPeter S. Mazinger2005-10-251-0/+2
|
* All Makefile.in's. Only arm/i386/mips/powerpc/x86_64 are done, the other ↵Peter S. Mazinger2005-10-251-2/+3
| | | | archs lack proper crt1. The Makefiles in extra/scripts are intended to be linked into each dir, where it is necessary to build locally.
* Undo -combine addition, check_gcc can't cope with itPeter S. Mazinger2005-10-171-4/+1
|
* Add -combine to CFLAGS so gcc-4.1 won't build faulty libs if all sources are ↵Peter S. Mazinger2005-10-161-1/+4
| | | | built into one object
* Rewrote almost all Makefiles: do not use strip $(x),y; run strip on all ↵Peter S. Mazinger2005-10-121-4/+4
| | | | objects at once; use :=//$</$^; use CRT_SRC/CRT_OBJ/SCRT_OBJ/CSRC/COBJ/SSRC/SOBJ/MSRC/MOBJ where no more is needed, if only CSRC is present use OBJS directly instead of COBJ; CTOR_TARGETS are created directly in lib; remove unused/unneeded parts. Hope I haven't broken too much.
* Fix up PTDIR bug and clean target for libpthread."Steven J. Hill"2005-10-081-11/+11
|
* Fix broken path for PTDIR which needed a '/' at the end to work. Also ↵"Steven J. Hill"2005-10-061-3/+31
| | | | brought in the other stuff needed for NPTL. Erik, please cut me some slack again. The option is not in 'extra/Config/Config.in' so it cannot be activated. Besides, take a look at the check in tonight on the branch and the post on the mailing list.
* Use PTDIR in libpthread/Makefile too, add new PTNAME being nptl or ↵Peter S. Mazinger2005-10-041-3/+10
| | | | linuxthreads. sjhill, I know you kill my keyboard, but please read my added comments, thanks.
* Clean up pthread include mess. Some of these will be needed to support NPTL, ↵"Steven J. Hill"2005-10-041-0/+7
| | | | but they do no harm for the linuxthreads case. Yes, I tested this.
* Remove ar-target and shared targets, at build time now we traverse the tree ↵Peter S. Mazinger2005-09-281-4/+0
| | | | only once. Generalize all toplevel makefiles. Make sure, that libdl.so is built against libc.so and not libc.a
* clean up -malign- vs -falign- #352 by yvasilevMike Frysinger2005-09-281-3/+3
|
* Add __cxa_atexit and __cxa_finalize, thanks to Stephen Warren. This patch ↵Peter S. Mazinger2005-09-261-0/+1
| | | | breaks compatibility with existing binaries, unless the new COMPAT_ATEXIT option is enabled.
* punt _DL_FINI_CRT_COMPAT option now that 0.9.28 has been releasedMike Frysinger2005-09-081-5/+2
|
* optimize library based upon sparc cpu selectionMike Frysinger2005-08-251-0/+7
|
* per suggestion by psm, remove the variable DYNAMIC_LINKEREric Andersen2005-08-131-1/+0
|
* Removed hardcoded ld-uClibc.so.0 in uClibc. From Peter Mazinger.Joakim Tjernlund2005-08-121-7/+1
|
* Remove SYSTEM_LDSO option since it no longer works.Joakim Tjernlund2005-08-121-4/+1
|
* add back in the LDPIEFLAG since -fPIE does not imply -pieMike Frysinger2005-08-111-1/+17
|
* Bump version in preparation for the upcoming releaseEric Andersen2005-08-101-1/+1
|
* as pointed out by khem/ngupta, ARM926T should be march armv5 instead of armv4Mike Frysinger2005-07-291-1/+1
|
* export PIEFLAG and the noexecstack AS test so that gcc/as arent executed in ↵Mike Frysinger2005-07-291-5/+16
| | | | every subdir
* finish cleaning up the PIE flag checksMike Frysinger2005-07-291-16/+9
|
* get rid of LDPIEFLAG since PIEFLAG is already usedMike Frysinger2005-07-291-3/+0
|
* further refine output so the silent mode of make is truly silentMike Frysinger2005-07-281-0/+11
|
* add c to default ARFLAGS to get rid of ar: creating blah.a messagesMike Frysinger2005-07-281-1/+1
|
* Add Peter Mazinger fini/crt compat patch. Select DL_FINI_CRT_COMPAT toJoakim Tjernlund2005-05-281-0/+4
| | | | | | | | be able to run apps built with 0.9.27. This also renames __uClibc_start_main to __uClibc_main. This compat option should be removed some time after 0.9.28 is released. Let me know if you don't like this change.
* Add patch at bugs 274. From Peter Manzinger.Joakim Tjernlund2005-05-281-12/+13
|
* Add TOPDIR prefix in front of config file when getting target architecture."Steven J. Hill"2005-05-141-1/+1
|
* Top-level makefile fix for OS agnosticism and set the value of TARGET_ARCH"Steven J. Hill"2005-05-141-1/+1
| | | | | | using grep because the '.config' will not get included if we are doing a 'clean' or other targets. This was preventing the proper cleaning up target architecture include files.
* ARM1136JF-S support.Paul Mundt2005-05-131-0/+1
|
* Add sh2a support.Paul Mundt2005-05-021-0/+6
|
* erm, that #" broke stuffMike Frysinger2005-03-161-1/+1
|
* CROSS_COMPILE -> CROSS_COMPILER_PREFIX like busyboxMike Frysinger2005-03-161-1/+1
|
* add a Kconfig option for setting the $(CROSS) build variableMike Frysinger2005-03-151-0/+4
|
* beautifyMike Frysinger2005-01-191-33/+35
|
* - define RANLIB since a subdir or two uses itMike Frysinger2005-01-181-1/+7
| | | | - add support for DESTDIR to work the same as PREFIX
* Bump version numberEric Andersen2005-01-091-1/+1
|