Changeset b0f60261 in OpenModelica


Ignore:
Timestamp:
2016-04-07T16:29:58+02:00 (8 years ago)
Author:
hudson <openmodelica@…>
Branches:
Added-citation-metadata, maintenance/v1.14, maintenance/v1.15, maintenance/v1.16, maintenance/v1.17, maintenance/v1.18, maintenance/v1.19, maintenance/v1.20, maintenance/v1.21, maintenance/v1.22, maintenance/v1.23, master, omlib-staging
Children:
f90b512
Parents:
2c7da6d
git-author:
Martin Sjölund <martin.sjolund@…> (04/07/16 16:29:58)
git-committer:
hudson <openmodelica@…> (04/07/16 16:29:58)
Message:

Fix problems with errorext bootstrapping linking

Location:
Compiler/runtime
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • Compiler/runtime/Makefile.common

    re0b0d22 rb0f60261  
    8888
    8989%.boot.o: %.c
    90   $(CC) -c -o "$@" "$<" $(CFLAGS) $(CPPFLAGS)
     90  $(CC) -c -o "$@" "$<" $(CFLAGS) $(CPPFLAGS) -I../boot/tarball-include/
    9191%.boot.o: %.cpp
    92   $(CXX) -c -o "$@" "$<" $(CXXFLAGS) $(CPPFLAGS)
     92  $(CXX) -c -o "$@" "$<" $(CXXFLAGS) $(CPPFLAGS) -I../boot/tarball-include/
     93%.o: %.c
     94  $(CC) -c -o "$@" "$<" $(CFLAGS) $(CPPFLAGS) -I..
     95%.o: %.cpp
     96  $(CXX) -c -o "$@" "$<" $(CXXFLAGS) $(CPPFLAGS) -I..
    9397
    9498clean:
  • Compiler/runtime/Makefile.in

    re0b0d22 rb0f60261  
    3232IDLPYTHON = @IDLPYTHONCMD@
    3333CXXFLAGS = $(CFLAGS)
    34 CPPFLAGS = @CPPFLAGS@ -I$(top_builddir)/SimulationRuntime/c -I$(top_builddir)/SimulationRuntime/c/simulation/results -I$(top_builddir)/SimulationRuntime/c/util -I$(top_builddir)/SimulationRuntime/c/meta -I$(top_builddir)/SimulationRuntime/c/meta/gc -I.. -I. $(CORBAINCL) -I$(FMIINCLUDE) -I$(top_builddir)/3rdParty/gc/include -I$(GRAPHSTREAMINCLUDE) -I$(GRAPHINCLUDE) -I$(CJSONINCLUDE)
     34CPPFLAGS = @CPPFLAGS@ -I$(top_builddir)/SimulationRuntime/c -I$(top_builddir)/SimulationRuntime/c/simulation/results -I$(top_builddir)/SimulationRuntime/c/util -I$(top_builddir)/SimulationRuntime/c/meta -I$(top_builddir)/SimulationRuntime/c/meta/gc -I. $(CORBAINCL) -I$(FMIINCLUDE) -I$(top_builddir)/3rdParty/gc/include -I$(GRAPHSTREAMINCLUDE) -I$(GRAPHINCLUDE) -I$(CJSONINCLUDE)
    3535TRIPLE=@host_short@
    3636
Note: See TracChangeset for help on using the changeset viewer.