﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
1588	another error message while running a makefile	jlettau	jlettau	"Hello, here happens another error with the makefile of the code below:

{{{
    block blogg
      parameter input Integer n;
      input Boolean t[:];
      output Boolean b;
    algorithm
      b:=true;
      for i in 1:n loop
        if t[i] then
           b:=false;
          end if;
        end for;
     end blogg;
  
model acD
  parameter Integer nIn = 0;
  parameter Integer n =0;
  Real tIn[n];
  blogg glog(n=nIn,t=tIn);
  Boolean bOut;
 equation
   bOut = glog.b;
end acD;
}}}

{{{
$ make -f acDis.makefile
gcc  -O3 -falign-functions -msse2 -mfpmath=sse   -I""F:/workspace/OpenModelica/build//include/omc"" -I.
acDis.c: In function `functionDAE':
acDis.c:427: error: `$Pglog$Pt' undeclared (first use in this function)
acDis.c:427: error: (Each undeclared identifier is reported only once
acDis.c:427: error: for each function it appears in.)
make: *** [acDis.o] Error 1
}}}"	defect	closed	blocker				fixed		jlettau
