summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libcpu/i386/Makefile.am (follow)
Commit message (Collapse)AuthorAgeFilesLines
* bsp/pc386: Move libcpu content to bspsSebastian Huber2018-03-221-17/+0
| | | | | | This patch is a part of the BSP source reorganization. Update #3285.
* bsps: Rework cache manager implementationSebastian Huber2018-01-311-6/+0
| | | | | | | | | | | | | | | | | | The previous cache manager support used a single souce file (cache_manager.c) which included an implementation header (cache_.h). This required the use of specialized include paths to find the right header file. Change this to include a generic implementation header (cacheimpl.h) in specialized source files. Use the following directories and files: * bsps/shared/cache * bsps/@RTEMS_CPU@/shared/cache * bsps/@RTEMS_CPU@/@RTEMS_BSP_FAMILY/start/cache.c Update #3285.
* Remove make preinstallChris Johns2018-01-251-6/+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.
* bsps: Do not install <libcpu/cache.h>Sebastian Huber2017-12-081-1/+0
| | | | | | This is a cache manager implementation header file. Update #3254.
* i386: refactor libcpu/cpu.h into rtems/score/i386.hJoel Sherrill2016-03-031-2/+2
| | | | Fixes #2515.
* rtems: Move rtems_cache_aligned_malloc()Sebastian Huber2014-11-251-1/+1
| | | | | | Make sure also the size is cache aligned since otherwise we may have some overlap with the next allocation block. A cache invalidate on this area would be fatal.
* Remove CVS-Ids.Ralf Corsépius2012-05-041-4/+0
|
* Remove all-local:.Ralf Corsepius2006-01-121-2/+0
|
* Cleanup.Ralf Corsepius2006-01-121-4/+0
|
* Add preinstall.amRalf Corsepius2005-11-041-23/+6
|
* 2005-01-07 Ralf Corsepius <ralf.corsepius@rtems.org>Ralf Corsepius2005-01-071-3/+3
| | | | * Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
* 2005-01-03 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2005-01-031-1/+1
| | | | * Makefile.am: Fix typo.
* 2005-01-02 Ralf Corsepius <ralf.corsepius@rtems.org>Ralf Corsepius2005-01-021-33/+4
| | | | * Makefile.am: Remove build-variant support.
* 2004-02-06 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2004-02-061-1/+0
| | | | * Makefile.am: Don't include .../lib.am.
* 2004-01-21 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2004-01-211-18/+48
| | | | | | | | | * Makefile.am: Split the blob of *.o into cache.rel, page.rel and score.rel. Add PREINSTALL_DIRS. Use automake compilation rules. * page.c, cpuModel.S: Remove stray blanks. * configure.ac: Require automake >= 1.8.2. Add AM_PROG_CC_C_O. Add subdir-objects to AUTOMAKE_OPTIONS.
* 2004-01-14 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2004-01-141-0/+3
| | | | | * Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES. Add PRE/TMPINSTALL_FILES to CLEANFILES.
* 2003-12-16 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2003-12-161-12/+12
| | | | * Makefile.am: Eliminate VPATH.
* 2003-12-12 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2003-12-121-2/+1
| | | | * Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
* 2003-12-02 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2003-12-021-1/+1
| | | | * Makefile.am: Remove all-local: $(ARCH).
* 2003-12-01 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2003-12-011-10/+21
| | | | * Makefile.am: Reformat. Use dirstamps for preinstallation.
* 2003-08-18 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2003-08-181-1/+1
| | | | * Makefile.am: Reflect having moved aclocal/.
* 2003-08-16 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2003-08-161-3/+3
| | | | Makefile.am: Reflect having moved automake.
* 2002-12-19 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2002-12-191-5/+2
| | | | | | * Makefile.am: Don't include @RTEMS_BSP@.cfg. Eliminate *_O_FILES. * configure.ac: Remove RTEMS_CHECK_CUSTOM_BSP.
* 2002-08-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2002-08-111-2/+2
| | | | * Makefile.am: Use .$(OBJEXT) instead of .o.
* 2002-07-30 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Ralf Corsepius2002-07-301-1/+1
| | | | | | | * cpuModel.S: Include <rtems/score/registers.h> instead of <libcpu/registers.h>. * registers.h: Removed. * Makefile.am: Remove registers.h.
* 2002-03-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Joel Sherrill2002-03-281-1/+0
| | | | | | | * configure.ac: AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS). AM_INIT_AUTOMAKE([no-define foreign 1.6]). * Makefile.am: Remove AUTOMAKE_OPTIONS.
* 2001-09-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Joel Sherrill2001-09-271-2/+2
| | | | | * Makefile.am: Use 'PREINSTALL_FILES ='. * Makefile.am: Use 'CLEANFILES ='.
* 2001-02-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Joel Sherrill2001-03-011-6/+9
| | | | | * Makefile.am: Apply include_*HEADERS instead of H_FILES. * .cvsignore: Add cache.h.
* 2000-11-09 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Joel Sherrill2000-11-091-1/+1
| | | | * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
* 2000-11-02 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Joel Sherrill2000-11-021-1/+1
| | | | * Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal.
* 2000-10-26 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Joel Sherrill2000-10-261-1/+1
| | | | | * Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros. Switch to GNU canonicalization.
* 2000-10-17 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2000-10-171-2/+1
| | | | | * idt.c, Makefile.am: Moved idt.c to libbsp/i386/shared so i386 RTEMS can be multilib'ed.
* 2000-09-04 Ralf Corsepius <corsepiu@faw.uni-ulm.de>Joel Sherrill2000-09-051-3/+5
| | | | * Makefile.am: Include compile.am
* Moved i386 and m68k cache management code to libcpu. EverythingJoel Sherrill2000-06-131-16/+12
| | | | | | now is an implementation of the prototypes in rtems/rtems/cache.h. The libcpu/i386/wrapup directory is no longer needed. The PowerPC needs this done to it.
* Merged from 4.5.0-beta3aJoel Sherrill2000-06-121-2/+2
|
* Patches rtems-rc-20000118-3.diff and rtems-rc-20000118-4.diff fromJoel Sherrill2000-01-311-14/+12
| | | | | | | | | | Ralf Corsepius <corsepiu@faw.uni-ulm.de> that contain: * Modifications, (minor) corrections, cleanups to most existing Makefile.ams * Adds automake support to all remaining BSPs which have not yet been converted to automake. * Makefile.am for all remaining wrapup/Makefile.ams
* Removing Makefile.in and adding Makefile.am. These were missed in conversionJoel Sherrill1999-12-211-0/+50
to automake by Ralf Corsepius <corsepiu@faw.uni-ulm.de>.