Changes between Version 1 and Version 3 of Ticket #65


Ignore:
Timestamp:
11/04/07 21:43:57 (17 years ago)
Author:
arango
Comment:

This ticket has been open for a while. The makefile was changed on 07/31/07 (ticket:70) as:

MACROS := $(shell cpp -P $(ROMS_CPPFLAGS) Compilers/make_macros.h > \
                $(MAKE_MACROS); $(CLEAN) $(MAKE_MACROS))

so the cpp -P command is used instead of the CPP definition. This implies that the user needs to have the cpp program location in the PATH environmental variable. This solution is not perfect but it is the best that we can do.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #65 – Description

    v1 v3  
    1 There is a problem in the '''makefile''' and the application-dependent compilation options from file '''make_macros.mk'''.  This one is a little bit tricky and affects the order of configuration files included in the '''makefile'''.  It turns out that the file '''make_macros.mk''' needs to be included first before the dependencies are generated and included. Thsi implies that the application-dependent CPP flags need to be set-up earlier because they are needed to create configuration file '''make_macros.mk'''.
     1There is a problem in the '''makefile''' and the application-dependent compilation options from file '''make_macros.mk'''.  This one is a little bit tricky and affects the order of configuration files included in the '''makefile'''.  It turns out that the file '''make_macros.mk''' needs to be included first before the dependencies are generated and included. This implies that the application-dependent CPP flags need to be set-up earlier because they are needed to create configuration file '''make_macros.mk'''.