summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/powerpc/psim/bsp_specs (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-01-25Remove make preinstallChris Johns1-9/+0
A speciality of the RTEMS build system was the make preinstall step. It copied header files from arbitrary locations into the build tree. The header files were included via the -Bsome/build/tree/path GCC command line option. This has at least seven problems: * The make preinstall step itself needs time and disk space. * Errors in header files show up in the build tree copy. This makes it hard for editors to open the right file to fix the error. * There is no clear relationship between source and build tree header files. This makes an audit of the build process difficult. * The visibility of all header files in the build tree makes it difficult to enforce API barriers. For example it is discouraged to use BSP-specifics in the cpukit. * An introduction of a new build system is difficult. * Include paths specified by the -B option are system headers. This may suppress warnings. * The parallel build had sporadic failures on some hosts. This patch removes the make preinstall step. All installed header files are moved to dedicated include directories in the source tree. Let @RTEMS_CPU@ be the target architecture, e.g. arm, powerpc, sparc, etc. Let @RTEMS_BSP_FAMILIY@ be a BSP family base directory, e.g. erc32, imx, qoriq, etc. The new cpukit include directories are: * cpukit/include * cpukit/score/cpu/@RTEMS_CPU@/include * cpukit/libnetworking The new BSP include directories are: * bsps/include * bsps/@RTEMS_CPU@/include * bsps/@RTEMS_CPU@/@RTEMS_BSP_FAMILIY@/include There are build tree include directories for generated files. The include directory order favours the most general header file, e.g. it is not possible to override general header files via the include path order. The "bootstrap -p" option was removed. The new "bootstrap -H" option should be used to regenerate the "headers.am" files. Update #3254.
2017-12-20gen5200, gen83xx, gen83x, mpc55xxevb, psim, qoriq, t32mppc, tqm8xx, virtex: ↵Joel Sherrill1-6/+1
Simplify bsp_specs These BSPs all use shared/startup/linkcmds.base and thus needed to be modified at the same time. Variations in the arguments were reflected into the BSP specific portions of the linkcmds. Updates #3520.
2017-11-29psim/bsp_specs: Reorder and improve consistencyJoel Sherrill1-3/+3
Updates #3520.
2017-11-27REVERT */*/bsp_specs: Increase similarity to ease futureJoel Sherrill1-3/+3
Patch was not intended to be pushed yet. Updates #3520.
2017-11-27*/*/bsp_specs: Increase similarity to ease future analysisJoel Sherrill1-3/+3
Done: arm bfin epiphany i386 lm32 m32c mips moxie nios2 or1k powerpc riscv sh sparc sparc64 v850 To do: m68k Differences noted: + endfile was sometimes before startfile + endfile sometimes was hard-coded and did not have -qrtems version + Should -e XXX (e.g. entry point) be in linkcmds? + Should -u XXX (e.g. undefined symbols) be in linkcmds? + Typos: Odd spacing, "old_endfiles" typo, and *(old_endfiles) (not %) + nios2: Referenced crtnn.o not crtn.o (error) Need to revisit: + m32c, moxie, sparc64 includes !nostdlib which is not used elsewhere + sh has -EL/-EB mapping. Why needed? + sparc64 didn't include crti.o/crtn.o but it is part of toolset + v850 uses something like this for link and end_file: "%{qrtems: %(old_link)}" This means that these are unnecessary. Try this on all. + mips uses old_link all the time also. + arm/tms750 adds -EB. + powerpc: Why do we have rtems_crt* and not use something from GCC? Updates #3520.
2008-12-072008-12-07 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius1-1/+1
* bsp_specs: Remove -Qy from *link.
2008-12-042008-12-04 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill1-2/+3
* bsp_specs: Move -e start from *link to *startfile to avoid warning for undefined entry symbol when linking relocatables with binutils 2.19.
2008-01-042008-01-03 Till Straumann <strauman@slac.stanford.edu>Till Straumann1-1/+1
* bsp_specs: added crtend.o back to the endfiles. Otherwise, C++ static constructors are not executed because the call to __do_global_ctors_aux() is emitted into the .init section by this endfile (yes, the endfile contributes to .init).
2007-12-112007-12-11 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill1-1/+1
* bsp_specs, include/bsp.h, startup/bspstart.c: Eliminate copies of the Configuration Table. Use the RTEMS provided accessor macros to obtain configuration fields.
2007-04-122007-04-12 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius1-3/+2
* bsp_specs: Remove qrtems_debug.
2004-11-222004-11-22 Jennifer Averett <jennifer@OARcorp.com>Jennifer Averett1-4/+3
PR 581/bsps * Makefile.am, bsp_specs, configure.ac, include/bsp.h, include/tm27.h, start/start.S, startup/bspstart.c, startup/linkcmds, tools/Makefile.am, tools/psim, vectors/vectors.S, wrapup/Makefile.am: Convert PSIM to new exception model. * irq/irq.c, irq/irq.h, irq/irq_asm.S, irq/irq_init.c: New files. * startup/setvec.c, timer/timer.c: Removed.
2003-09-192003-09-19 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius1-8/+0
* bsp_specs: Remove *lib:.
2003-08-062003-08-06 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius1-3/+0
* bsp_specs: Remove -D__embedded__ -Asystem(embedded) from cpp. Remove cpp, old_cpp (now unused).
2002-08-212002-08-21 Joel Sherrill <joel@OARcorp.com>Joel Sherrill1-4/+4
* bsp_specs: Added support for -nostdlibs.
2002-01-042001-12-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Joel Sherrill1-1/+1
* bsp_specs: Replace -lrtemsall with -lrtemsbsp -lrtemscpu, replace -lrtemsall_g with -lrtemsbsp_g -lrtemscpu_g.
2000-06-12Merged from 4.5.0-beta3aJoel Sherrill1-1/+1
1999-11-19Renaming all BSP specific startXXX directories to use the same name (start).Joel Sherrill1-2/+2
1999-04-06Patch from Andrew Bray <andy@chaos.org.uk>:Joel Sherrill1-1/+4
In your various bsp_specs files, even when ecrti.o is defined as a startfile, ecrtn.o is not defined as an endfile. Instead it seems to be in the library list - untidy.
1998-04-18psim now runs in both debug and non-debug mode.Joel Sherrill1-5/+5
1998-04-14new filesJoel Sherrill1-2/+2
1998-02-11Incorporated Ralf Corsepius' idea for new -q flags to properly supportJoel Sherrill1-2/+7
"gmake debug".
1997-12-20Moved -qnolinkcmds option so arguments passed on the command line areJoel Sherrill1-2/+2
interpreted at the right point per Eric Norum's discovery: The problem with the my previous `fix' for adding linker commands was with the ordering of the options to the linker. For example, to make a larger heap size, the application Makefile would CFLAGS_LD = -Wl,--defsym -Wl,HeapSize=0x40000 The command passed to the linker would be : m68k-rtems-ld .... -T xxx/linkcmds .... --defsym HeapSize=0x40000 ..... This doesn't work because the script in linkcmds inserts a default value for HeapSize if HeapSize is not defined by the time the linker looks at the linkcmds script. The solution seems to be to move the -T linkcmds%s in the bsp_specs file out of the link specfication and into the lib specification -- a little unorthodox, perhaps, but it seems to work!
1997-12-19Modified bsp_specs per Eric Norum's suggestion to handle -qnolinkcmdsJoel Sherrill1-1/+1
switch which lets the user specify a different linker script.
1997-10-08Modified to search RTEMS library before Newlib C library.Joel Sherrill1-1/+1
1997-08-28Switched to new style which does not require hackspecs.awk.Joel Sherrill1-29/+13
1997-01-28new file used by gcc 2.8.x -specs optionJoel Sherrill1-0/+34