Changeset effb43 in git for omalloc


Ignore:
Timestamp:
Jul 18, 2020, 10:44:09 AM (4 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
5f56325b86f62a2d25723e9c60bcbfe33adebe8e
Parents:
3b1cda3853034c56d558fdc2e89453a9d4d7c14d
Message:
cross compiling: gmp
Location:
omalloc
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • omalloc/Makefile.am

    r3b1cda3 reffb43  
    4141
    4242omTables.inc:
    43         $(MAKE) $(AM_MAKEFLAGS) CC="${CC_FOR_BUILD}" CFLAGS="${CFLAGS_FOR_BUILD}" LDFLAGS="$(LDFLAGS_FOR_BUILD)" omTables
     43        $(MAKE) $(AM_MAKEFLAGS) \
     44        CC="${CC_FOR_BUILD}" \
     45        CFLAGS="${CFLAGS_FOR_BUILD}" \
     46        CPPFLAGS="-I${abs_top_srcdir}/.. -I${abs_top_builddir}/.. $(CPPFLAGS_FOR_BUILD) -DOM_GENERATE_INC" \
     47        LDFLAGS="$(LDFLAGS_FOR_BUILD)" omTables
    4448        ./omTables$(BUILD_EXEEXT) > omTables.xx && mv omTables.xx  omTables.inc
    4549
    4650omTables.h:
    4751        $(MAKE) $(AM_MAKEFLAGS) \
    48         CPPFLGAS="$(AM_CPPFLAGS) $(CPPFLAGS_FOR_BUILD) -DOM_GENERATE_INC" \
     52        CPPFLAGS="-I${abs_top_srcdir}/.. -I${abs_top_builddir}/.. $(CPPFLAGS_FOR_BUILD)" \
    4953        CC="${CC_FOR_BUILD}" \
    5054        CFLAGS="${CFLAGS_FOR_BUILD}" \
  • omalloc/configure.ac

    r3b1cda3 reffb43  
    2828
    2929AX_PROG_CC_FOR_BUILD
     30AC_SUBST(BUILD_EXEEXT)
    3031
    3132# Add pre'prefixed config
  • omalloc/omTables.c

    r3b1cda3 reffb43  
    1414#include <unistd.h>
    1515#include <string.h>
    16 #include "omConfig.h"
    17 #include "omDerivedConfig.h"
    18 #include "omStructs.h"
    19 #include "omAllocPrivate.h"
     16#include "omalloc/omConfig.h"
     17#include "omalloc/omDerivedConfig.h"
     18#include "omalloc/omStructs.h"
     19#include "omalloc/omAllocPrivate.h"
    2020
    2121/* Specify the minimal number of blocks which should go into a bin */
  • omalloc/omTables1.c

    r3b1cda3 reffb43  
    1414#include <unistd.h>
    1515#include <string.h>
    16 #include "omConfig.h"
    17 #include "omDerivedConfig.h"
    18 #include "omStructs.h"
    19 #include "omAllocPrivate.h"
     16#include "omalloc/omConfig.h"
     17#include "omalloc/omDerivedConfig.h"
     18#include "omalloc/omStructs.h"
     19#include "omalloc/omAllocPrivate.h"
    2020
    2121/* Specify the minimal number of blocks which should go into a bin */
Note: See TracChangeset for help on using the changeset viewer.