View Issue Details

IDProjectCategoryView StatusLast Update
0001244Ecere SDKcompilerpublic2022-01-10 13:39
Reportermingodad Assigned Tomingodad  
PriorityimmediateSeveritymajorReproducibilityalways
Status feedbackResolutionopen 
Platform-crossplatformOS-OS Version-
Summary0001244: Use after free on compiler/libec/src/pass2.ec
DescriptionTrying to figure out why I was getting segfault when building the samples/net/browser I disabled memory pool and rebuild everything in debug mode and then run ecc under valgrind on places it was failing and valgrind pointed out the use after free in compiler/libec/src/pass2.ec::_FixRefExp when called from compiler/libec/src/pass2.ec::FixRefExp see bellow:
====
static Expression FixRefExp(Expression exp)
{
   if(exp.type == opExp)
   {
      _FixRefExp(&exp, &exp.op.exp1);
      _FixRefExp(&exp, &exp.op.exp2); //<<<!!! here exp was deleted on the previous line call
   }
   else if(exp.type == indexExp)
      _FixRefExp(&exp, &exp.index.exp);
   else if(exp.type == memberExp)
      _FixRefExp(&exp, &exp.member.exp);
   return exp;
}
====
TagsNo tags attached.

Activities

mingodad

2022-01-09 17:04

developer   ~0001498

Last edited: 2022-01-09 17:17

View 2 revisions

Here is the output of valgrind where there is issues:
============
valgrind ../compiler/bootstrap/obj/bin.linux.debug/ecc -D_DEBUG -fmessage-length=0 -DECERE_NOSSL -DDEB_HOST_MULTIARCH=\"/usr/lib/x86_64-linux-gnu\" -cpp gcc -module ecere -defaultns ecere -DDISABLE_MEMMGR -I/usr/include/freetype2 -g -fPIC -w -DBUILDING_ECERE_COM -Isrc/gfx/drivers/gl3/ -Isrc/gfx/drivers/harfbuzz -I/usr/X11R6/include -I/usr/X11R6/include/freetype2 -fvisibility=hidden -c src/sys/Date.ec -o obj/release.linux.debug/Date.c -symbols obj/release.linux.debug/
==23857== Memcheck, a memory error detector
==23857== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
==23857== Using Valgrind-3.17.0 and LibVEX; rerun with -h for copyright info
==23857== Command: ../compiler/bootstrap/obj/bin.linux.debug/ecc -D_DEBUG -fmessage-length=0 -DECERE_NOSSL -DDEB_HOST_MULTIARCH="/usr/lib/x86_64-linux-gnu" -cpp gcc -module ecere -defaultns ecere -DDISABLE_MEMMGR -I/usr/include/freetype2 -g -fPIC -w -DBUILDING_ECERE_COM -Isrc/gfx/drivers/gl3/ -Isrc/gfx/drivers/harfbuzz -I/usr/X11R6/include -I/usr/X11R6/include/freetype2 -fvisibility=hidden -c src/sys/Date.ec -o obj/release.linux.debug/Date.c -symbols obj/release.linux.debug/
==23857==
==23857== Invalid read of size 4
==23857== at 0x221663: ProcessExpression (pass2.c:3181)
==23857== by 0x226FBD: ProcessStatement (pass2.c:4299)
==23857== by 0x226F5E: ProcessStatement (pass2.c:4284)
==23857== by 0x227056: ProcessStatement (pass2.c:4317)
==23857== by 0x226F5E: ProcessStatement (pass2.c:4284)
==23857== by 0x218FEC: ProcessFunction (pass2.c:1602)
==23857== by 0x227627: ProcessMemberAccess (pass2.c:4491)
==23857== by 0x11350B: __ecereMethod_CompilerApp_Main (ecc.c:1237)
==23857== by 0x114071: main (ecc.main.c:462)
==23857== Address 0x7173b58 is 88 bytes inside a block of size 152 free'd
==23857== at 0x4C35737: free (vg_replace_malloc.c:755)
==23857== by 0x129E30: __ecereNameSpace__ecere__com___myfree (instance.c:1386)
==23857== by 0x129E6A: __ecereNameSpace__ecere__com___free (instance.c:1450)
==23857== by 0x129F8E: __ecereNameSpace__ecere__com__eSystem_Delete (instance.c:1608)
==23857== by 0x186436: FreeType (freeAst.c:1351)
==23857== by 0x2214D2: ProcessExpression (pass2.c:3167)
==23857== by 0x226FBD: ProcessStatement (pass2.c:4299)
==23857== by 0x226F5E: ProcessStatement (pass2.c:4284)
==23857== by 0x227056: ProcessStatement (pass2.c:4317)
==23857== by 0x226F5E: ProcessStatement (pass2.c:4284)
==23857== by 0x218FEC: ProcessFunction (pass2.c:1602)
==23857== by 0x227627: ProcessMemberAccess (pass2.c:4491)
==23857== Block was alloc'd at
==23857== at 0x4C37A0B: calloc (vg_replace_malloc.c:1117)
==23857== by 0x129E8E: __ecereNameSpace__ecere__com___mycalloc (instance.c:1457)
==23857== by 0x129FBD: __ecereNameSpace__ecere__com___calloc (instance.c:1615)
==23857== by 0x12DEFE: __ecereNameSpace__ecere__com__eInstance_New (instance.c:3441)
==23857== by 0x1DD2E1: Reference (pass15.c:8342)
==23857== by 0x1FF61E: ProcessExpressionType (pass15.c:16761)
==23857== by 0x204F85: ProcessExpressionType (pass15.c:17880)
==23857== by 0x1F7C85: ProcessStatement (pass15.c:15152)
==23857== by 0x1F7C0B: ProcessStatement (pass15.c:15138)
==23857== by 0x1F7D71: ProcessStatement (pass15.c:15168)
==23857== by 0x1F7C0B: ProcessStatement (pass15.c:15138)
==23857== by 0x20D5C6: ProcessFunction (pass15.c:19586)
==23857==
==23857== Invalid read of size 4
==23857== at 0x221663: ProcessExpression (pass2.c:3181)
==23857== by 0x226FBD: ProcessStatement (pass2.c:4299)
==23857== by 0x227056: ProcessStatement (pass2.c:4317)
==23857== by 0x226F5E: ProcessStatement (pass2.c:4284)
==23857== by 0x227056: ProcessStatement (pass2.c:4317)
==23857== by 0x226F5E: ProcessStatement (pass2.c:4284)
==23857== by 0x227056: ProcessStatement (pass2.c:4317)
==23857== by 0x226F5E: ProcessStatement (pass2.c:4284)
==23857== by 0x218FEC: ProcessFunction (pass2.c:1602)
==23857== by 0x227627: ProcessMemberAccess (pass2.c:4491)
==23857== by 0x11350B: __ecereMethod_CompilerApp_Main (ecc.c:1237)
==23857== by 0x114071: main (ecc.main.c:462)
==23857== Address 0x7189148 is 88 bytes inside a block of size 152 free'd
==23857== at 0x4C35737: free (vg_replace_malloc.c:755)
==23857== by 0x129E30: __ecereNameSpace__ecere__com___myfree (instance.c:1386)
==23857== by 0x129E6A: __ecereNameSpace__ecere__com___free (instance.c:1450)
==23857== by 0x129F8E: __ecereNameSpace__ecere__com__eSystem_Delete (instance.c:1608)
==23857== by 0x186436: FreeType (freeAst.c:1351)
==23857== by 0x2214D2: ProcessExpression (pass2.c:3167)
==23857== by 0x226FBD: ProcessStatement (pass2.c:4299)
==23857== by 0x227056: ProcessStatement (pass2.c:4317)
==23857== by 0x226F5E: ProcessStatement (pass2.c:4284)
==23857== by 0x227056: ProcessStatement (pass2.c:4317)
==23857== by 0x226F5E: ProcessStatement (pass2.c:4284)
==23857== by 0x227056: ProcessStatement (pass2.c:4317)
==23857== Block was alloc'd at
==23857== at 0x4C37A0B: calloc (vg_replace_malloc.c:1117)
==23857== by 0x129E8E: __ecereNameSpace__ecere__com___mycalloc (instance.c:1457)
==23857== by 0x129FBD: __ecereNameSpace__ecere__com___calloc (instance.c:1615)
==23857== by 0x12DEFE: __ecereNameSpace__ecere__com__eInstance_New (instance.c:3441)
==23857== by 0x1DD2E1: Reference (pass15.c:8342)
==23857== by 0x1FF61E: ProcessExpressionType (pass15.c:16761)
==23857== by 0x204F85: ProcessExpressionType (pass15.c:17880)
==23857== by 0x1F7C85: ProcessStatement (pass15.c:15152)
==23857== by 0x1F7D71: ProcessStatement (pass15.c:15168)
==23857== by 0x1F7C0B: ProcessStatement (pass15.c:15138)
==23857== by 0x1F7D71: ProcessStatement (pass15.c:15168)
==23857== by 0x1F7C0B: ProcessStatement (pass15.c:15138)
==23857==
==23857==
==23857== HEAP SUMMARY:
==23857== in use at exit: 71,152 bytes in 585 blocks
==23857== total heap usage: 171,312 allocs, 170,727 frees, 160,581,771 bytes allocated
==23857==
==23857== LEAK SUMMARY:
==23857== definitely lost: 2,016 bytes in 21 blocks
==23857== indirectly lost: 52,694 bytes in 562 blocks
==23857== possibly lost: 0 bytes in 0 blocks
==23857== still reachable: 16,442 bytes in 2 blocks
==23857== suppressed: 0 bytes in 0 blocks
==23857== Rerun with --leak-check=full to see details of leaked memory
==23857==
==23857== For lists of detected and suppressed errors, rerun with: -s
==23857== ERROR SUMMARY: 2 errors from 2 contexts (suppressed: 0 from 0)
...
valgrind ../compiler/bootstrap/obj/bin.linux.debug/ecc -D_DEBUG -fmessage-length=0 -DECERE_NOSSL -DDEB_HOST_MULTIARCH=\"/usr/lib/x86_64-linux-gnu\" -cpp gcc -module ecere -defaultns ecere -DDISABLE_MEMMGR -I/usr/include/freetype2 -g -fPIC -w -DBUILDING_ECERE_COM -Isrc/gfx/drivers/gl3/ -Isrc/gfx/drivers/harfbuzz -I/usr/X11R6/include -I/usr/X11R6/include/freetype2 -fvisibility=hidden -c src/gfx/drivers/OpenGLDisplayDriver.ec -o obj/release.linux.debug/OpenGLDisplayDriver.c -symbols obj/release.linux.debug/
==24333== Memcheck, a memory error detector
==24333== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
==24333== Using Valgrind-3.17.0 and LibVEX; rerun with -h for copyright info
==24333== Command: ../compiler/bootstrap/obj/bin.linux.debug/ecc -D_DEBUG -fmessage-length=0 -DECERE_NOSSL -DDEB_HOST_MULTIARCH="/usr/lib/x86_64-linux-gnu" -cpp gcc -module ecere -defaultns ecere -DDISABLE_MEMMGR -I/usr/include/freetype2 -g -fPIC -w -DBUILDING_ECERE_COM -Isrc/gfx/drivers/gl3/ -Isrc/gfx/drivers/harfbuzz -I/usr/X11R6/include -I/usr/X11R6/include/freetype2 -fvisibility=hidden -c src/gfx/drivers/OpenGLDisplayDriver.ec -o obj/release.linux.debug/OpenGLDisplayDriver.c -symbols obj/release.linux.debug/
==24333==
==24333== Invalid read of size 4
==24333== at 0x21867D: _FixRefExp (pass2.c:769)
==24333== by 0x218A38: FixRefExp (pass2.c:839)
==24333== by 0x22612E: ProcessExpression (pass2.c:4115)
==24333== by 0x21E1B2: ProcessExpression (pass2.c:2641)
==24333== by 0x225B6D: ProcessExpression (pass2.c:4036)
==24333== by 0x21F3C1: ProcessExpression (pass2.c:2788)
==24333== by 0x226FBD: ProcessStatement (pass2.c:4299)
==24333== by 0x227056: ProcessStatement (pass2.c:4317)
==24333== by 0x226EA0: ProcessStatement (pass2.c:4260)
==24333== by 0x226F5E: ProcessStatement (pass2.c:4284)
==24333== by 0x227101: ProcessStatement (pass2.c:4334)
==24333== by 0x226F5E: ProcessStatement (pass2.c:4284)
==24333== Address 0x8645c90 is 48 bytes inside a block of size 200 free'd
==24333== at 0x4C35737: free (vg_replace_malloc.c:755)
==24333== by 0x129E30: __ecereNameSpace__ecere__com___myfree (instance.c:1386)
==24333== by 0x129E6A: __ecereNameSpace__ecere__com___free (instance.c:1450)
==24333== by 0x129F8E: __ecereNameSpace__ecere__com__eSystem_Delete (instance.c:1608)
==24333== by 0x188612: _FreeExpression (freeAst.c:2576)
==24333== by 0x185B9C: FreeExpression (freeAst.c:198)
==24333== by 0x18805E: _FreeExpression (freeAst.c:2426)
==24333== by 0x185B7C: FreeExpContents (freeAst.c:193)
==24333== by 0x21872D: _FixRefExp (pass2.c:781)
==24333== by 0x218A21: FixRefExp (pass2.c:838)
==24333== by 0x22612E: ProcessExpression (pass2.c:4115)
==24333== by 0x21E1B2: ProcessExpression (pass2.c:2641)
==24333== Block was alloc'd at
==24333== at 0x4C37A0B: calloc (vg_replace_malloc.c:1117)
==24333== by 0x129E8E: __ecereNameSpace__ecere__com___mycalloc (instance.c:1457)
==24333== by 0x129FBD: __ecereNameSpace__ecere__com___calloc (instance.c:1615)
==24333== by 0x12DEFE: __ecereNameSpace__ecere__com__eInstance_New (instance.c:3441)
==24333== by 0x15C0CF: MkExpIdentifier (ast.c:1881)
==24333== by 0x194241: yyparse (grammar.c:5410)
==24333== by 0x15B0FE: ParseEc (ast.c:252)
==24333== by 0x113460: __ecereMethod_CompilerApp_Main (ecc.c:1218)
==24333== by 0x114071: main (ecc.main.c:462)
==24333==
==24333==
==24333== HEAP SUMMARY:
==24333== in use at exit: 69,073 bytes in 553 blocks
==24333== total heap usage: 491,044 allocs, 490,491 frees, 182,570,061 bytes allocated
==24333==
==24333== LEAK SUMMARY:
==24333== definitely lost: 1,400 bytes in 15 blocks
==24333== indirectly lost: 51,231 bytes in 536 blocks
==24333== possibly lost: 0 bytes in 0 blocks
==24333== still reachable: 16,442 bytes in 2 blocks
==24333== suppressed: 0 bytes in 0 blocks
==24333== Rerun with --leak-check=full to see details of leaked memory
==24333==
==24333== For lists of detected and suppressed errors, rerun with: -s
==24333== ERROR SUMMARY: 2 errors from 1 contexts (suppressed: 0 from 0)
...
valgrind ../compiler/bootstrap/obj/bin.linux.debug/ecc -D_DEBUG -fmessage-length=0 -DECERE_NOSSL -DDEB_HOST_MULTIARCH=\"/usr/lib/x86_64-linux-gnu\" -cpp gcc -module ecere -defaultns ecere -DDISABLE_MEMMGR -I/usr/include/freetype2 -g -fPIC -w -DBUILDING_ECERE_COM -Isrc/gfx/drivers/gl3/ -Isrc/gfx/drivers/harfbuzz -I/usr/X11R6/include -I/usr/X11R6/include/freetype2 -fvisibility=hidden -c src/gfx/Color.ec -o obj/release.linux.debug/Color.c -symbols obj/release.linux.debug/
==24383== Memcheck, a memory error detector
==24383== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
==24383== Using Valgrind-3.17.0 and LibVEX; rerun with -h for copyright info
==24383== Command: ../compiler/bootstrap/obj/bin.linux.debug/ecc -D_DEBUG -fmessage-length=0 -DECERE_NOSSL -DDEB_HOST_MULTIARCH="/usr/lib/x86_64-linux-gnu" -cpp gcc -module ecere -defaultns ecere -DDISABLE_MEMMGR -I/usr/include/freetype2 -g -fPIC -w -DBUILDING_ECERE_COM -Isrc/gfx/drivers/gl3/ -Isrc/gfx/drivers/harfbuzz -I/usr/X11R6/include -I/usr/X11R6/include/freetype2 -fvisibility=hidden -c src/gfx/Color.ec -o obj/release.linux.debug/Color.c -symbols obj/release.linux.debug/
==24383==
==24383== Invalid read of size 4
==24383== at 0x221663: ProcessExpression (pass2.c:3181)
==24383== by 0x226FBD: ProcessStatement (pass2.c:4299)
==24383== by 0x226F5E: ProcessStatement (pass2.c:4284)
==24383== by 0x227056: ProcessStatement (pass2.c:4317)
==24383== by 0x226F5E: ProcessStatement (pass2.c:4284)
==24383== by 0x218FEC: ProcessFunction (pass2.c:1602)
==24383== by 0x227627: ProcessMemberAccess (pass2.c:4491)
==24383== by 0x11350B: __ecereMethod_CompilerApp_Main (ecc.c:1237)
==24383== by 0x114071: main (ecc.main.c:462)
==24383== Address 0x59f3238 is 88 bytes inside a block of size 152 free'd
==24383== at 0x4C35737: free (vg_replace_malloc.c:755)
==24383== by 0x129E30: __ecereNameSpace__ecere__com___myfree (instance.c:1386)
==24383== by 0x129E6A: __ecereNameSpace__ecere__com___free (instance.c:1450)
==24383== by 0x129F8E: __ecereNameSpace__ecere__com__eSystem_Delete (instance.c:1608)
==24383== by 0x186436: FreeType (freeAst.c:1351)
==24383== by 0x2214D2: ProcessExpression (pass2.c:3167)
==24383== by 0x226FBD: ProcessStatement (pass2.c:4299)
==24383== by 0x226F5E: ProcessStatement (pass2.c:4284)
==24383== by 0x227056: ProcessStatement (pass2.c:4317)
==24383== by 0x226F5E: ProcessStatement (pass2.c:4284)
==24383== by 0x218FEC: ProcessFunction (pass2.c:1602)
==24383== by 0x227627: ProcessMemberAccess (pass2.c:4491)
==24383== Block was alloc'd at
==24383== at 0x4C37A0B: calloc (vg_replace_malloc.c:1117)
==24383== by 0x129E8E: __ecereNameSpace__ecere__com___mycalloc (instance.c:1457)
==24383== by 0x129FBD: __ecereNameSpace__ecere__com___calloc (instance.c:1615)
==24383== by 0x12DEFE: __ecereNameSpace__ecere__com__eInstance_New (instance.c:3441)
==24383== by 0x1DD2E1: Reference (pass15.c:8342)
==24383== by 0x1FF61E: ProcessExpressionType (pass15.c:16761)
==24383== by 0x204F85: ProcessExpressionType (pass15.c:17880)
==24383== by 0x1F7C85: ProcessStatement (pass15.c:15152)
==24383== by 0x1F7C0B: ProcessStatement (pass15.c:15138)
==24383== by 0x1F7D71: ProcessStatement (pass15.c:15168)
==24383== by 0x1F7C0B: ProcessStatement (pass15.c:15138)
==24383== by 0x20D5C6: ProcessFunction (pass15.c:19586)
==24383==
==24383== Invalid read of size 4
==24383== at 0x221663: ProcessExpression (pass2.c:3181)
==24383== by 0x226FBD: ProcessStatement (pass2.c:4299)
==24383== by 0x226F5E: ProcessStatement (pass2.c:4284)
==24383== by 0x218FEC: ProcessFunction (pass2.c:1602)
==24383== by 0x227627: ProcessMemberAccess (pass2.c:4491)
==24383== by 0x11350B: __ecereMethod_CompilerApp_Main (ecc.c:1237)
==24383== by 0x114071: main (ecc.main.c:462)
==24383== Address 0x66f5bf8 is 88 bytes inside a block of size 152 free'd
==24383== at 0x4C35737: free (vg_replace_malloc.c:755)
==24383== by 0x129E30: __ecereNameSpace__ecere__com___myfree (instance.c:1386)
==24383== by 0x129E6A: __ecereNameSpace__ecere__com___free (instance.c:1450)
==24383== by 0x129F8E: __ecereNameSpace__ecere__com__eSystem_Delete (instance.c:1608)
==24383== by 0x186436: FreeType (freeAst.c:1351)
==24383== by 0x2214D2: ProcessExpression (pass2.c:3167)
==24383== by 0x226FBD: ProcessStatement (pass2.c:4299)
==24383== by 0x226F5E: ProcessStatement (pass2.c:4284)
==24383== by 0x218FEC: ProcessFunction (pass2.c:1602)
==24383== by 0x227627: ProcessMemberAccess (pass2.c:4491)
==24383== by 0x11350B: __ecereMethod_CompilerApp_Main (ecc.c:1237)
==24383== by 0x114071: main (ecc.main.c:462)
==24383== Block was alloc'd at
==24383== at 0x4C37A0B: calloc (vg_replace_malloc.c:1117)
==24383== by 0x129E8E: __ecereNameSpace__ecere__com___mycalloc (instance.c:1457)
==24383== by 0x129FBD: __ecereNameSpace__ecere__com___calloc (instance.c:1615)
==24383== by 0x12DEFE: __ecereNameSpace__ecere__com__eInstance_New (instance.c:3441)
==24383== by 0x1DD2E1: Reference (pass15.c:8342)
==24383== by 0x1FF61E: ProcessExpressionType (pass15.c:16761)
==24383== by 0x204F85: ProcessExpressionType (pass15.c:17880)
==24383== by 0x1F7C85: ProcessStatement (pass15.c:15152)
==24383== by 0x1F7C0B: ProcessStatement (pass15.c:15138)
==24383== by 0x20D5C6: ProcessFunction (pass15.c:19586)
==24383== by 0x1FB64B: ComputeDataTypes (pass15.c:15914)
==24383== by 0x113501: __ecereMethod_CompilerApp_Main (ecc.c:1235)
==24383==
==24383== Invalid read of size 4
==24383== at 0x21867D: _FixRefExp (pass2.c:769)
==24383== by 0x218A38: FixRefExp (pass2.c:839)
==24383== by 0x22612E: ProcessExpression (pass2.c:4115)
==24383== by 0x21D9C2: ProcessExpression (pass2.c:2566)
==24383== by 0x21E1B2: ProcessExpression (pass2.c:2641)
==24383== by 0x21BB99: ProcessExpression (pass2.c:2297)
==24383== by 0x226FBD: ProcessStatement (pass2.c:4299)
==24383== by 0x226F5E: ProcessStatement (pass2.c:4284)
==24383== by 0x218FEC: ProcessFunction (pass2.c:1602)
==24383== by 0x227627: ProcessMemberAccess (pass2.c:4491)
==24383== by 0x11350B: __ecereMethod_CompilerApp_Main (ecc.c:1237)
==24383== by 0x114071: main (ecc.main.c:462)
==24383== Address 0x683a9c0 is 48 bytes inside a block of size 200 free'd
==24383== at 0x4C35737: free (vg_replace_malloc.c:755)
==24383== by 0x129E30: __ecereNameSpace__ecere__com___myfree (instance.c:1386)
==24383== by 0x129E6A: __ecereNameSpace__ecere__com___free (instance.c:1450)
==24383== by 0x129F8E: __ecereNameSpace__ecere__com__eSystem_Delete (instance.c:1608)
==24383== by 0x188612: _FreeExpression (freeAst.c:2576)
==24383== by 0x185B9C: FreeExpression (freeAst.c:198)
==24383== by 0x18805E: _FreeExpression (freeAst.c:2426)
==24383== by 0x185B7C: FreeExpContents (freeAst.c:193)
==24383== by 0x21872D: _FixRefExp (pass2.c:781)
==24383== by 0x218A21: FixRefExp (pass2.c:838)
==24383== by 0x22612E: ProcessExpression (pass2.c:4115)
==24383== by 0x21D9C2: ProcessExpression (pass2.c:2566)
==24383== Block was alloc'd at
==24383== at 0x4C37A0B: calloc (vg_replace_malloc.c:1117)
==24383== by 0x129E8E: __ecereNameSpace__ecere__com___mycalloc (instance.c:1457)
==24383== by 0x129FBD: __ecereNameSpace__ecere__com___calloc (instance.c:1615)
==24383== by 0x12DEFE: __ecereNameSpace__ecere__com__eInstance_New (instance.c:3441)
==24383== by 0x15C167: MkExpConstant (ast.c:1897)
==24383== by 0x1941F0: yyparse (grammar.c:5403)
==24383== by 0x15B0FE: ParseEc (ast.c:252)
==24383== by 0x113460: __ecereMethod_CompilerApp_Main (ecc.c:1218)
==24383== by 0x114071: main (ecc.main.c:462)
==24383==
==24383== Invalid read of size 4
==24383== at 0x221663: ProcessExpression (pass2.c:3181)
==24383== by 0x226FBD: ProcessStatement (pass2.c:4299)
==24383== by 0x227056: ProcessStatement (pass2.c:4317)
==24383== by 0x226F5E: ProcessStatement (pass2.c:4284)
==24383== by 0x227056: ProcessStatement (pass2.c:4317)
==24383== by 0x226F5E: ProcessStatement (pass2.c:4284)
==24383== by 0x218FEC: ProcessFunction (pass2.c:1602)
==24383== by 0x227627: ProcessMemberAccess (pass2.c:4491)
==24383== by 0x11350B: __ecereMethod_CompilerApp_Main (ecc.c:1237)
==24383== by 0x114071: main (ecc.main.c:462)
==24383== Address 0x672cac8 is 88 bytes inside a block of size 152 free'd
==24383== at 0x4C35737: free (vg_replace_malloc.c:755)
==24383== by 0x129E30: __ecereNameSpace__ecere__com___myfree (instance.c:1386)
==24383== by 0x129E6A: __ecereNameSpace__ecere__com___free (instance.c:1450)
==24383== by 0x129F8E: __ecereNameSpace__ecere__com__eSystem_Delete (instance.c:1608)
==24383== by 0x186436: FreeType (freeAst.c:1351)
==24383== by 0x2214D2: ProcessExpression (pass2.c:3167)
==24383== by 0x226FBD: ProcessStatement (pass2.c:4299)
==24383== by 0x227056: ProcessStatement (pass2.c:4317)
==24383== by 0x226F5E: ProcessStatement (pass2.c:4284)
==24383== by 0x227056: ProcessStatement (pass2.c:4317)
==24383== by 0x226F5E: ProcessStatement (pass2.c:4284)
==24383== by 0x218FEC: ProcessFunction (pass2.c:1602)
==24383== Block was alloc'd at
==24383== at 0x4C37A0B: calloc (vg_replace_malloc.c:1117)
==24383== by 0x129E8E: __ecereNameSpace__ecere__com___mycalloc (instance.c:1457)
==24383== by 0x129FBD: __ecereNameSpace__ecere__com___calloc (instance.c:1615)
==24383== by 0x12DEFE: __ecereNameSpace__ecere__com__eInstance_New (instance.c:3441)
==24383== by 0x1DD2E1: Reference (pass15.c:8342)
==24383== by 0x1FF61E: ProcessExpressionType (pass15.c:16761)
==24383== by 0x204F85: ProcessExpressionType (pass15.c:17880)
==24383== by 0x1F7C85: ProcessStatement (pass15.c:15152)
==24383== by 0x1F7D71: ProcessStatement (pass15.c:15168)
==24383== by 0x1F7C0B: ProcessStatement (pass15.c:15138)
==24383== by 0x1F7D71: ProcessStatement (pass15.c:15168)
==24383== by 0x1F7C0B: ProcessStatement (pass15.c:15138)
==24383==
==24383==
==24383== HEAP SUMMARY:
==24383== in use at exit: 85,399 bytes in 789 blocks
==24383== total heap usage: 206,896 allocs, 206,107 frees, 164,423,548 bytes allocated
==24383==
==24383== LEAK SUMMARY:
==24383== definitely lost: 1,976 bytes in 21 blocks
==24383== indirectly lost: 66,981 bytes in 766 blocks
==24383== possibly lost: 0 bytes in 0 blocks
==24383== still reachable: 16,442 bytes in 2 blocks
==24383== suppressed: 0 bytes in 0 blocks
==24383== Rerun with --leak-check=full to see details of leaked memory
==24383==
==24383== For lists of detected and suppressed errors, rerun with: -s
==24383== ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 0 from 0)
...
valgrind ../compiler/bootstrap/obj/bin.linux.debug/ecc -D_DEBUG -fmessage-length=0 -DECERE_NOSSL -DDEB_HOST_MULTIARCH=\"/usr/lib/x86_64-linux-gnu\" -cpp gcc -module ecere -defaultns ecere -DDISABLE_MEMMGR -I/usr/include/freetype2 -g -fPIC -w -DBUILDING_ECERE_COM -Isrc/gfx/drivers/gl3/ -Isrc/gfx/drivers/harfbuzz -I/usr/X11R6/include -I/usr/X11R6/include/freetype2 -fvisibility=hidden -c src/gui/controls/Button.ec -o obj/release.linux.debug/Button.c -symbols obj/release.linux.debug/
==24473== Memcheck, a memory error detector
==24473== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
==24473== Using Valgrind-3.17.0 and LibVEX; rerun with -h for copyright info
==24473== Command: ../compiler/bootstrap/obj/bin.linux.debug/ecc -D_DEBUG -fmessage-length=0 -DECERE_NOSSL -DDEB_HOST_MULTIARCH="/usr/lib/x86_64-linux-gnu" -cpp gcc -module ecere -defaultns ecere -DDISABLE_MEMMGR -I/usr/include/freetype2 -g -fPIC -w -DBUILDING_ECERE_COM -Isrc/gfx/drivers/gl3/ -Isrc/gfx/drivers/harfbuzz -I/usr/X11R6/include -I/usr/X11R6/include/freetype2 -fvisibility=hidden -c src/gui/controls/Button.ec -o obj/release.linux.debug/Button.c -symbols obj/release.linux.debug/
==24473==
==24473== Invalid read of size 4
==24473== at 0x21867D: _FixRefExp (pass2.c:769)
==24473== by 0x218A38: FixRefExp (pass2.c:839)
==24473== by 0x22612E: ProcessExpression (pass2.c:4115)
==24473== by 0x21E1B2: ProcessExpression (pass2.c:2641)
==24473== by 0x225B6D: ProcessExpression (pass2.c:4036)
==24473== by 0x21F3C1: ProcessExpression (pass2.c:2788)
==24473== by 0x226FBD: ProcessStatement (pass2.c:4299)
==24473== by 0x226F5E: ProcessStatement (pass2.c:4284)
==24473== by 0x227056: ProcessStatement (pass2.c:4317)
==24473== by 0x226F5E: ProcessStatement (pass2.c:4284)
==24473== by 0x227056: ProcessStatement (pass2.c:4317)
==24473== by 0x226F5E: ProcessStatement (pass2.c:4284)
==24473== Address 0x5dd3d90 is 48 bytes inside a block of size 200 free'd
==24473== at 0x4C35737: free (vg_replace_malloc.c:755)
==24473== by 0x129E30: __ecereNameSpace__ecere__com___myfree (instance.c:1386)
==24473== by 0x129E6A: __ecereNameSpace__ecere__com___free (instance.c:1450)
==24473== by 0x129F8E: __ecereNameSpace__ecere__com__eSystem_Delete (instance.c:1608)
==24473== by 0x188612: _FreeExpression (freeAst.c:2576)
==24473== by 0x185B9C: FreeExpression (freeAst.c:198)
==24473== by 0x18805E: _FreeExpression (freeAst.c:2426)
==24473== by 0x185B7C: FreeExpContents (freeAst.c:193)
==24473== by 0x21872D: _FixRefExp (pass2.c:781)
==24473== by 0x218A21: FixRefExp (pass2.c:838)
==24473== by 0x22612E: ProcessExpression (pass2.c:4115)
==24473== by 0x21E1B2: ProcessExpression (pass2.c:2641)
==24473== Block was alloc'd at
==24473== at 0x4C37A0B: calloc (vg_replace_malloc.c:1117)
==24473== by 0x129E8E: __ecereNameSpace__ecere__com___mycalloc (instance.c:1457)
==24473== by 0x129FBD: __ecereNameSpace__ecere__com___calloc (instance.c:1615)
==24473== by 0x12DEFE: __ecereNameSpace__ecere__com__eInstance_New (instance.c:3441)
==24473== by 0x15C167: MkExpConstant (ast.c:1897)
==24473== by 0x1941F0: yyparse (grammar.c:5403)
==24473== by 0x15B0FE: ParseEc (ast.c:252)
==24473== by 0x113460: __ecereMethod_CompilerApp_Main (ecc.c:1218)
==24473== by 0x114071: main (ecc.main.c:462)
==24473==
==24473== Invalid read of size 4
==24473== at 0x21867D: _FixRefExp (pass2.c:769)
==24473== by 0x218A38: FixRefExp (pass2.c:839)
==24473== by 0x22612E: ProcessExpression (pass2.c:4115)
==24473== by 0x21D826: ProcessExpression (pass2.c:2558)
==24473== by 0x21E1B2: ProcessExpression (pass2.c:2641)
==24473== by 0x225B6D: ProcessExpression (pass2.c:4036)
==24473== by 0x21D9C2: ProcessExpression (pass2.c:2566)
==24473== by 0x226FBD: ProcessStatement (pass2.c:4299)
==24473== by 0x227077: ProcessStatement (pass2.c:4319)
==24473== by 0x226F5E: ProcessStatement (pass2.c:4284)
==24473== by 0x227056: ProcessStatement (pass2.c:4317)
==24473== by 0x226F5E: ProcessStatement (pass2.c:4284)
==24473== Address 0x61fb6e0 is 48 bytes inside a block of size 200 free'd
==24473== at 0x4C35737: free (vg_replace_malloc.c:755)
==24473== by 0x129E30: __ecereNameSpace__ecere__com___myfree (instance.c:1386)
==24473== by 0x129E6A: __ecereNameSpace__ecere__com___free (instance.c:1450)
==24473== by 0x129F8E: __ecereNameSpace__ecere__com__eSystem_Delete (instance.c:1608)
==24473== by 0x188612: _FreeExpression (freeAst.c:2576)
==24473== by 0x185B9C: FreeExpression (freeAst.c:198)
==24473== by 0x18805E: _FreeExpression (freeAst.c:2426)
==24473== by 0x185B7C: FreeExpContents (freeAst.c:193)
==24473== by 0x21872D: _FixRefExp (pass2.c:781)
==24473== by 0x218A21: FixRefExp (pass2.c:838)
==24473== by 0x22612E: ProcessExpression (pass2.c:4115)
==24473== by 0x21D826: ProcessExpression (pass2.c:2558)
==24473== Block was alloc'd at
==24473== at 0x4C37A0B: calloc (vg_replace_malloc.c:1117)
==24473== by 0x129E8E: __ecereNameSpace__ecere__com___mycalloc (instance.c:1457)
==24473== by 0x129FBD: __ecereNameSpace__ecere__com___calloc (instance.c:1615)
==24473== by 0x12DEFE: __ecereNameSpace__ecere__com__eInstance_New (instance.c:3441)
==24473== by 0x15C0CF: MkExpIdentifier (ast.c:1881)
==24473== by 0x194241: yyparse (grammar.c:5410)
==24473== by 0x15B0FE: ParseEc (ast.c:252)
==24473== by 0x113460: __ecereMethod_CompilerApp_Main (ecc.c:1218)
==24473== by 0x114071: main (ecc.main.c:462)
==24473==
==24473==
==24473== HEAP SUMMARY:
==24473== in use at exit: 75,623 bytes in 665 blocks
==24473== total heap usage: 224,355 allocs, 223,690 frees, 164,550,614 bytes allocated
==24473==
==24473== LEAK SUMMARY:
==24473== definitely lost: 2,264 bytes in 24 blocks
==24473== indirectly lost: 56,917 bytes in 639 blocks
==24473== possibly lost: 0 bytes in 0 blocks
==24473== still reachable: 16,442 bytes in 2 blocks
==24473== suppressed: 0 bytes in 0 blocks
==24473== Rerun with --leak-check=full to see details of leaked memory
==24473==
==24473== For lists of detected and suppressed errors, rerun with: -s
==24473== ERROR SUMMARY: 42 errors from 2 contexts (suppressed: 0 from 0)
...

jerome

2022-01-10 02:32

administrator   ~0001500

Last edited: 2022-01-10 02:35

View 2 revisions

@mingodad samples/net/browser is building fine for me on branch 'latest'.
Which branch of the SDK are you using?
Perhaps it was fixed by be9ac1cd1df3bb2ec4eb217316e7f88de94766c6 ( compiler/libec/pass2: Fixed use of free memory with memberExp.member.exp ) ?
https://github.com/ecere/ecere-sdk/commit/be9ac1cd1df3bb2ec4eb217316e7f88de94766c6

mingodad

2022-01-10 10:41

developer   ~0001501

Hello jerome !
It seems that there was a change to repository and the "master" branch disappeared, I had a previous clone and did a "git pull" and thought that it was OK but after your reply I verified and found that the "master" branch doesn't exist anymore and git was not getting all the the other branches.

So I forked the "latest" repository and transferred my changes to it and made this PR https://github.com/ecere/ecere-sdk/pull/80 to allow check for memory problems when compiling for DEBUG and the use after free is still there:
======
valgrind ../compiler/bootstrap/obj/bin.linux.debug/ecc -D_DEBUG -fmessage-length=0 -DDEB_HOST_MULTIARCH=\"/usr/lib/x86_64-linux-gnu\" -cpp gcc -module ecere -defaultns ecere -DDISABLE_MEMMGR -I/usr/include/freetype2 -g -fPIC -w -DBUILDING_ECERE_COM -DCURL_DISABLE_TYPECHECK -Isrc/gfx/drivers/gl3/ -Isrc/gfx/drivers/harfbuzz -I/usr/X11R6/include -I/usr/X11R6/include/freetype2 -fvisibility=hidden -c src/sys/Date.ec -o obj/release.linux.debug/Date.c -symbols obj/release.linux.debug/
==4502== Memcheck, a memory error detector
==4502== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
==4502== Using Valgrind-3.17.0 and LibVEX; rerun with -h for copyright info
==4502== Command: ../compiler/bootstrap/obj/bin.linux.debug/ecc -D_DEBUG -fmessage-length=0 -DDEB_HOST_MULTIARCH="/usr/lib/x86_64-linux-gnu" -cpp gcc -module ecere -defaultns ecere -DDISABLE_MEMMGR -I/usr/include/freetype2 -g -fPIC -w -DBUILDING_ECERE_COM -DCURL_DISABLE_TYPECHECK -Isrc/gfx/drivers/gl3/ -Isrc/gfx/drivers/harfbuzz -I/usr/X11R6/include -I/usr/X11R6/include/freetype2 -fvisibility=hidden -c src/sys/Date.ec -o obj/release.linux.debug/Date.c -symbols obj/release.linux.debug/
==4502==
==4502== Invalid read of size 4
==4502== at 0x226537: ProcessExpression (pass2.c:3202)
==4502== by 0x22BE91: ProcessStatement (pass2.c:4320)
==4502== by 0x22BE32: ProcessStatement (pass2.c:4305)
==4502== by 0x22BF2A: ProcessStatement (pass2.c:4338)
==4502== by 0x22BE32: ProcessStatement (pass2.c:4305)
==4502== by 0x21DEA2: ProcessFunction (pass2.c:1621)
==4502== by 0x22C4FB: ProcessMemberAccess (pass2.c:4512)
==4502== by 0x1136F8: __ecereMethod_CompilerApp_Main (ecc.c:1264)
==4502== by 0x114469: main (ecc.main.c:487)
==4502== Address 0x76fc5d8 is 88 bytes inside a block of size 152 free'd
==4502== at 0x4C35737: free (vg_replace_malloc.c:755)
==4502== by 0x12ABA2: __ecereNameSpace__ecere__com___myfree (instance.c:1407)
==4502== by 0x12ABDC: __ecereNameSpace__ecere__com___free (instance.c:1471)
==4502== by 0x12AD00: __ecereNameSpace__ecere__com__eSystem_Delete (instance.c:1629)
==4502== by 0x189F83: FreeType (freeAst.c:1745)
==4502== by 0x2263A6: ProcessExpression (pass2.c:3188)
==4502== by 0x22BE91: ProcessStatement (pass2.c:4320)
==4502== by 0x22BE32: ProcessStatement (pass2.c:4305)
==4502== by 0x22BF2A: ProcessStatement (pass2.c:4338)
==4502== by 0x22BE32: ProcessStatement (pass2.c:4305)
==4502== by 0x21DEA2: ProcessFunction (pass2.c:1621)
==4502== by 0x22C4FB: ProcessMemberAccess (pass2.c:4512)
==4502== Block was alloc'd at
==4502== at 0x4C37A0B: calloc (vg_replace_malloc.c:1117)
==4502== by 0x12AC00: __ecereNameSpace__ecere__com___mycalloc (instance.c:1478)
==4502== by 0x12AD30: __ecereNameSpace__ecere__com___calloc (instance.c:1636)
==4502== by 0x12ED4A: __ecereNameSpace__ecere__com__Instance_New (instance.c:3477)
==4502== by 0x12AE86: __ecereNameSpace__ecere__com__eInstance_New (instance.c:1725)
==4502== by 0x1E162B: Reference (pass15.c:8344)
==4502== by 0x204033: ProcessExpressionType (pass15.c:16812)
==4502== by 0x209CD9: ProcessExpressionType (pass15.c:17949)
==4502== by 0x1FC673: ProcessStatement (pass15.c:15196)
==4502== by 0x1FC5F9: ProcessStatement (pass15.c:15182)
==4502== by 0x1FC75F: ProcessStatement (pass15.c:15212)
==4502== by 0x1FC5F9: ProcessStatement (pass15.c:15182)
==4502==
==4502== Invalid read of size 4
==4502== at 0x226537: ProcessExpression (pass2.c:3202)
==4502== by 0x22BE91: ProcessStatement (pass2.c:4320)
==4502== by 0x22BF2A: ProcessStatement (pass2.c:4338)
==4502== by 0x22BE32: ProcessStatement (pass2.c:4305)
==4502== by 0x22BF2A: ProcessStatement (pass2.c:4338)
==4502== by 0x22BE32: ProcessStatement (pass2.c:4305)
==4502== by 0x22BF2A: ProcessStatement (pass2.c:4338)
==4502== by 0x22BE32: ProcessStatement (pass2.c:4305)
==4502== by 0x21DEA2: ProcessFunction (pass2.c:1621)
==4502== by 0x22C4FB: ProcessMemberAccess (pass2.c:4512)
==4502== by 0x1136F8: __ecereMethod_CompilerApp_Main (ecc.c:1264)
==4502== by 0x114469: main (ecc.main.c:487)
==4502== Address 0x7712668 is 88 bytes inside a block of size 152 free'd
==4502== at 0x4C35737: free (vg_replace_malloc.c:755)
==4502== by 0x12ABA2: __ecereNameSpace__ecere__com___myfree (instance.c:1407)
==4502== by 0x12ABDC: __ecereNameSpace__ecere__com___free (instance.c:1471)
==4502== by 0x12AD00: __ecereNameSpace__ecere__com__eSystem_Delete (instance.c:1629)
==4502== by 0x189F83: FreeType (freeAst.c:1745)
==4502== by 0x2263A6: ProcessExpression (pass2.c:3188)
==4502== by 0x22BE91: ProcessStatement (pass2.c:4320)
==4502== by 0x22BF2A: ProcessStatement (pass2.c:4338)
==4502== by 0x22BE32: ProcessStatement (pass2.c:4305)
==4502== by 0x22BF2A: ProcessStatement (pass2.c:4338)
==4502== by 0x22BE32: ProcessStatement (pass2.c:4305)
==4502== by 0x22BF2A: ProcessStatement (pass2.c:4338)
==4502== Block was alloc'd at
==4502== at 0x4C37A0B: calloc (vg_replace_malloc.c:1117)
==4502== by 0x12AC00: __ecereNameSpace__ecere__com___mycalloc (instance.c:1478)
==4502== by 0x12AD30: __ecereNameSpace__ecere__com___calloc (instance.c:1636)
==4502== by 0x12ED4A: __ecereNameSpace__ecere__com__Instance_New (instance.c:3477)
==4502== by 0x12AE86: __ecereNameSpace__ecere__com__eInstance_New (instance.c:1725)
==4502== by 0x1E162B: Reference (pass15.c:8344)
==4502== by 0x204033: ProcessExpressionType (pass15.c:16812)
==4502== by 0x209CD9: ProcessExpressionType (pass15.c:17949)
==4502== by 0x1FC673: ProcessStatement (pass15.c:15196)
==4502== by 0x1FC75F: ProcessStatement (pass15.c:15212)
==4502== by 0x1FC5F9: ProcessStatement (pass15.c:15182)
==4502== by 0x1FC75F: ProcessStatement (pass15.c:15212)
==4502==
==4502==
==4502== HEAP SUMMARY:
==4502== in use at exit: 71,196 bytes in 585 blocks
==4502== total heap usage: 182,953 allocs, 182,368 frees, 172,355,778 bytes allocated
==4502==
==4502== LEAK SUMMARY:
==4502== definitely lost: 2,256 bytes in 24 blocks
==4502== indirectly lost: 52,498 bytes in 559 blocks
==4502== possibly lost: 0 bytes in 0 blocks
==4502== still reachable: 16,442 bytes in 2 blocks
==4502== suppressed: 0 bytes in 0 blocks
==4502== Rerun with --leak-check=full to see details of leaked memory
==4502==
==4502== For lists of detected and suppressed errors, rerun with: -s
==4502== ERROR SUMMARY: 2 errors from 2 contexts (suppressed: 0 from 0)

mingodad

2022-01-10 11:40

developer   ~0001503

Valgrind also reports things like:
=====
valgrind ../../compiler/bootstrap/obj/bin.linux.debug/ecp -D_DEBUG -fmessage-length=0 -cpp gcc -module ear -DDISABLE_MEMMGR -g -fPIC -w -c ear.ec -o obj/release.linux.debug/ear.sym
==20024== Memcheck, a memory error detector
==20024== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
==20024== Using Valgrind-3.17.0 and LibVEX; rerun with -h for copyright info
==20024== Command: ../../compiler/bootstrap/obj/bin.linux.debug/ecp -D_DEBUG -fmessage-length=0 -cpp gcc -module ear -DDISABLE_MEMMGR -g -fPIC -w -c ear.ec -o obj/release.linux.debug/ear.sym
==20024==
==20024== Invalid free() / delete / delete[] / realloc()
==20024== at 0x4C35737: free (vg_replace_malloc.c:755)
==20024== by 0x12E95D: __ecereNameSpace__ecere__com___myfree (instance.c:1407)
==20024== by 0x12E997: __ecereNameSpace__ecere__com___free (instance.c:1471)
==20024== by 0x12EABB: __ecereNameSpace__ecere__com__eSystem_Delete (instance.c:1629)
==20024== by 0x11D297: __ecereNameSpace__ecere__com__OnFree (dataTypes.c:1399)
==20024== by 0x5E356E6: __ecereMethod___ecereNameSpace__ecere__com__BuiltInContainer_Free (BuiltInContainer.ec:103)
==20024== by 0x5E40E6B: __ecereMethod___ecereNameSpace__ecere__com__Map_Copy (Map.ec:284)
==20024== by 0x5E36353: __ecereProp___ecereNameSpace__ecere__com__Container_Set_copySrc (Container.ec:105)
==20024== by 0x5C4DADF: __ecereCreateModuleInstances_JSON (JSON.ec:77)
==20024== by 0x5E7A8C6: __ecereDll_Load (ecere.main.ec:3212)
==20024== by 0x135B90: __ecereNameSpace__ecere__com__Module_Load (instance.c:4491)
==20024== by 0x1336D2: __ecereNameSpace__ecere__com__eModule_LoadStrict (instance.c:3783)
==20024== Address 0xeb33c18 is 8 bytes inside a block of size 96 alloc'd
==20024== at 0x4C37A0B: calloc (vg_replace_malloc.c:1117)
==20024== by 0x5E52BE5: __ecereNameSpace__ecere__com___calloc (instance.ec:1580)
==20024== by 0x5E5377D: __ecereNameSpace__ecere__com__eSystem_New0 (instance.ec:6357)
==20024== by 0x5C4D7FB: __ecereCreateModuleInstances_JSON (JSON.ec:77)
==20024== by 0x5E7A8C6: __ecereDll_Load (ecere.main.ec:3212)
==20024== by 0x135B90: __ecereNameSpace__ecere__com__Module_Load (instance.c:4491)
==20024== by 0x1336D2: __ecereNameSpace__ecere__com__eModule_LoadStrict (instance.c:3783)
==20024== by 0x1B9690: ImportModule (loadSymbols.c:2032)
==20024== by 0x16A984: MkExternalImport (ast.c:4316)
==20024== by 0x1AFF20: yyparse (grammar.c:11122)
==20024== by 0x16235C: ParseEc (ast.c:249)
==20024== by 0x11757E: __ecereMethod_PrecompApp_Main (ecp.c:3076)
==20024==
==20024== Invalid free() / delete / delete[] / realloc()
==20024== at 0x4C35737: free (vg_replace_malloc.c:755)
==20024== by 0x12E95D: __ecereNameSpace__ecere__com___myfree (instance.c:1407)
==20024== by 0x12E997: __ecereNameSpace__ecere__com___free (instance.c:1471)
==20024== by 0x1353AC: __ecereNameSpace__ecere__com__eClass_Unregister (instance.c:4331)
==20024== by 0x136551: __ecereNameSpace__ecere__com__Module_Destructor (instance.c:4698)
==20024== by 0x135500: __ecereNameSpace__ecere__com__eInstance_Delete (instance.c:4363)
==20024== by 0x1357BF: __ecereNameSpace__ecere__com__eInstance_DecRef (instance.c:4429)
==20024== by 0x13639B: __ecereNameSpace__ecere__com__Module_Destructor (instance.c:4663)
==20024== by 0x135500: __ecereNameSpace__ecere__com__eInstance_Delete (instance.c:4363)
==20024== by 0x1357BF: __ecereNameSpace__ecere__com__eInstance_DecRef (instance.c:4429)
==20024== by 0x1176F9: __ecereMethod_PrecompApp_Main (ecp.c:3112)
==20024== by 0x118224: main (ecp.main.c:491)
==20024== Address 0x5a615c8 is 8 bytes inside a block of size 640 alloc'd
==20024== at 0x4C37A0B: calloc (vg_replace_malloc.c:1117)
==20024== by 0x5E52BE5: __ecereNameSpace__ecere__com___calloc (instance.ec:1580)
==20024== by 0x5E5CD00: __ecereNameSpace__ecere__com__eSystem_RegisterClass (instance.ec:2741)
==20024== by 0x5C2BD6D: __ecereRegisterModule_Archive (Archive.ec:70)
==20024== by 0x5E6FC82: __ecereDll_Load (ecere.main.ec:1414)
==20024== by 0x135B90: __ecereNameSpace__ecere__com__Module_Load (instance.c:4491)
==20024== by 0x1336D2: __ecereNameSpace__ecere__com__eModule_LoadStrict (instance.c:3783)
==20024== by 0x1B9690: ImportModule (loadSymbols.c:2032)
==20024== by 0x16A984: MkExternalImport (ast.c:4316)
==20024== by 0x1AFF20: yyparse (grammar.c:11122)
==20024== by 0x16235C: ParseEc (ast.c:249)
==20024== by 0x11757E: __ecereMethod_PrecompApp_Main (ecp.c:3076)
==20024==
==20024== Invalid free() / delete / delete[] / realloc()
==20024== at 0x4C35737: free (vg_replace_malloc.c:755)
==20024== by 0x12E95D: __ecereNameSpace__ecere__com___myfree (instance.c:1407)
==20024== by 0x12E997: __ecereNameSpace__ecere__com___free (instance.c:1471)
==20024== by 0x134CB4: __ecereNameSpace__ecere__com__FreeTemplate (instance.c:4191)
==20024== by 0x134E21: __ecereNameSpace__ecere__com__eClass_Unregister (instance.c:4234)
==20024== by 0x136551: __ecereNameSpace__ecere__com__Module_Destructor (instance.c:4698)
==20024== by 0x135500: __ecereNameSpace__ecere__com__eInstance_Delete (instance.c:4363)
==20024== by 0x1357BF: __ecereNameSpace__ecere__com__eInstance_DecRef (instance.c:4429)
==20024== by 0x13639B: __ecereNameSpace__ecere__com__Module_Destructor (instance.c:4663)
==20024== by 0x135500: __ecereNameSpace__ecere__com__eInstance_Delete (instance.c:4363)
==20024== by 0x1357BF: __ecereNameSpace__ecere__com__eInstance_DecRef (instance.c:4429)
==20024== by 0x1176F9: __ecereMethod_PrecompApp_Main (ecp.c:3112)
==20024== Address 0x5aab7a8 is 8 bytes inside a block of size 640 alloc'd
==20024== at 0x4C37A0B: calloc (vg_replace_malloc.c:1117)
==20024== by 0x5E52BE5: __ecereNameSpace__ecere__com___calloc (instance.ec:1580)
==20024== by 0x5E5377D: __ecereNameSpace__ecere__com__eSystem_New0 (instance.ec:6357)
==20024== by 0x5E6376A: __ecereNameSpace__ecere__com__System_FindClass (instance.ec:3554)
==20024== by 0x5E5CFD5: __ecereNameSpace__ecere__com__eSystem_RegisterClass (instance.ec:2782)
==20024== by 0x5C55CBA: __ecereRegisterModule_JSON (JSON.ec:2954)
==20024== by 0x5E6FCE2: __ecereDll_Load (ecere.main.ec:1422)
==20024== by 0x135B90: __ecereNameSpace__ecere__com__Module_Load (instance.c:4491)
==20024== by 0x1336D2: __ecereNameSpace__ecere__com__eModule_LoadStrict (instance.c:3783)
==20024== by 0x1B9690: ImportModule (loadSymbols.c:2032)
==20024== by 0x16A984: MkExternalImport (ast.c:4316)
==20024== by 0x1AFF20: yyparse (grammar.c:11122)
==20024==
==20024==
==20024== HEAP SUMMARY:
==20024== in use at exit: 1,552,507 bytes in 20,849 blocks
==20024== total heap usage: 72,029 allocs, 72,007 frees, 5,305,553 bytes allocated
==20024==
==20024== LEAK SUMMARY:
==20024== definitely lost: 680,544 bytes in 13,570 blocks
==20024== indirectly lost: 848,603 bytes in 7,257 blocks
==20024== possibly lost: 0 bytes in 0 blocks
==20024== still reachable: 23,360 bytes in 22 blocks
==20024== suppressed: 0 bytes in 0 blocks
==20024== Rerun with --leak-check=full to see details of leaked memory
==20024==
==20024== For lists of detected and suppressed errors, rerun with: -s
==20024== ERROR SUMMARY: 20827 errors from 3 contexts (suppressed: 0 from 0)

jerome

2022-01-10 12:57

administrator   ~0001504

Last edited: 2022-01-10 12:59

View 3 revisions

@mingodad Thank you for the extra info.

The master branch is still there on the repository ( https://github.com/ecere/ecere-sdk/tree/master ), but it is not the default because it is around 1250 commits behind master as we did not really get much time to fully review and integrate the more recent development. Commits not on 'master' are still subject to be amended / rebased / discarded / etc.

As to the Valgrind report, I am not sure whether they are pointing to an actual issue, or if they are a side effect of e.g. disabling the memory manager with DISABLE_MEMMGR, or a mix of different versions of libecere being picked up.

e.g. I tried the same command with my installed /usr/bin/ecc and I do not get any error reported:

valgrind /usr/bin/ecc -D_DEBUG -fmessage-length=0 -DECERE_NOSSL -cpp gcc -module ecere -defaultns ecere -DDISABLE_MEMMGR -I/usr/include/freetype2 -g -fPIC -w -DBUILDING_ECERE_COM -Isrc/gfx/drivers/gl3/ -Isrc/gfx/drivers/harfbuzz -I/usr/X11R6/include -I/usr/X11R6/include/freetype2 -fvisibility=hidden -c src/sys/Date.ec -o obj/release.linux.debug/Date.c -symbols obj/release.linux.debug/

Could we maybe rewind to the situation that had you start to investigate this? Have you tried building the samples/net/browser with 'latest' installed, and is there still an issue? The example you have here is compiling Date.ec (which really needs to work fine for the Ecere SDK to build successfully from the tarball).

In general the SDK is highly functional except for a rough edge here and there, so those ERROR SUMMARY: 20827 seem to point to one of those scenarios with incompatible libraries

mingodad

2022-01-10 13:11

developer   ~0001505

Hello jerome !
To see the problem we need to disable the memory pool because it prevents valgrind to track every allocation from malloc/calloc/realloc/free see the pull request that adds the needing settings to achieve that here https://github.com/ecere/ecere-sdk/pull/80 and then build with this command:

=====
make V=1 DEBUG=1 DBGWRAPPER=myvalgrind DISABLE_MEMMGR=1 DESTDIR=$HOME/local/ecere-sdk > make-dbg.log 2>&1
=====

And yes I built the "samples/net/browser" with the "latest" branch and it works, but see https://ec-lang.org/mantis/view.php?id=1245

mingodad

2022-01-10 13:19

developer   ~0001507

So there is operator overload in "ecere" ?

Where to get any documentation of the language ?
The boo "TAO" doesn't got deep on the language itself, I was trying to create the railroad diagram to have a global view of the grammar because I didn't found anywhere any mention to operator overload.

jerome

2022-01-10 13:20

administrator   ~0001508

Last edited: 2022-01-10 13:29

View 2 revisions

@mingodad To check memory issue, we have our own memory debugging tool called "MemoryGuard".
In the Ecere project that you would like to debug, you can Ctrl+Shift+Right-Click an eC file to debug and select "Debug Compile" for ecc (or "Debug Precompile" for ecp).
That will automatically set up the workspace debugging arguments for the ecc project.
Note that you will need to set up the environment variable ECERE_SDK_SRC in the Compiler Settings / Environment to point to your ecere-sdk folder for this to work.
Then you can add both ecere-sdk/compiler/libec/ec.epj and ecere-sdk/ecere/ecere.epj to the workspace, select "MemoryGuard" compiler configuration for all projects, make sure they are all up to date (Right-Click / Build on all of them).
And Debug/Run.
If no memory errors come up this way, the odds are that the Valgrind errors are a result of not using the tools as intended (which I strongly suspect is the case in this particular case).

If there were so many serious memory issues (invalid read / frees / etc.) as Valgrind reported, the odds are that nothing would be able to run as intended.
Even without tracking individual frees, you should still be able to see some errors with the memory manager on for serious errors.

To debug with valgrind, you can switch to the Debug configurations (make sure they are all built as well), select "Use Valgrind" in the debug menu, and rebuild the main project (the executable, e.g. ecc).
That should automatically disable the MemoryManager pooling and provide you with good Valgrind debugging info, but MemoryGuard is normally more reliable.

mingodad

2022-01-10 13:26

developer   ~0001509

Thank you again for reply !
I didn't knew about "MemoryGuard" what I'm actually doing is creating a project in Netbeans 8.2 to create like the "browser" statically linked and then compile and run it (I've got it working on "master" but not yet on "latest") this way I can navigate the code easily and if valgrind says that there is a problem I usually believe on it because it's interpreting the generate code.

I'll let you know when I get the "latest" branch building with Netbeans and test it.

Cheers !

jerome

2022-01-10 13:38

administrator   ~0001510

@mingodad There is no operator overload in eC.
Although in a few scenarios like 3D math types I would find that actually useful and might consider implementing this (see 0000892), in most scenarios where operator overloading (e.g. in C++) I find operator overloading makes it more difficult to know what is actually going on.

There are unit classes and conversion properties however which can handle several of the use cases that operator overloading is often used for in C++ (with a lot less code).

In addition to the grammar diagram at https://ec-lang.org/grammar/, you might find the following summary useful as well:

https://ec-lang.org/eC-grammar.txt

And samples. Please join us on irc.libera.chat / #ecere, it's really the best place to ask for guidance with eC. Thank you!

mingodad

2022-01-10 13:39

developer   ~0001511

I've got it to build on NetBeans and I get the output shown bellow and I'll investigate why now:
======
valgrind ./browser
==7376== Memcheck, a memory error detector
==7376== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
==7376== Using Valgrind-3.17.0 and LibVEX; rerun with -h for copyright info
==7376== Command: ./browser
==7376==
==7376== Invalid write of size 8
==7376== at 0x4C3C8F6: memset (vg_replace_strmem.c:1270)
==7376== by 0x1322D8: __ecereNameSpace__ecere__com__eInstance_Evolve (instance.ec:4876)
==7376== by 0x120297: main (browser.main.ec:765)
==7376== Address 0xde87e18 is 696 bytes inside an unallocated block of size 3,789,952 in arena "client"
==7376==
==7376== Invalid write of size 8
==7376== at 0x4C3C907: memset (vg_replace_strmem.c:1270)
==7376== by 0x1322D8: __ecereNameSpace__ecere__com__eInstance_Evolve (instance.ec:4876)
==7376== by 0x120297: main (browser.main.ec:765)
==7376== Address 0xde87e20 is 704 bytes inside an unallocated block of size 3,789,952 in arena "client"
==7376==
==7376== Invalid write of size 8
==7376== at 0x4C3C90B: memset (vg_replace_strmem.c:1270)
==7376== by 0x1322D8: __ecereNameSpace__ecere__com__eInstance_Evolve (instance.ec:4876)
==7376== by 0x120297: main (browser.main.ec:765)
==7376== Address 0xde87e28 is 712 bytes inside an unallocated block of size 3,789,952 in arena "client"
==7376==
==7376== Invalid write of size 8
==7376== at 0x4C3C90F: memset (vg_replace_strmem.c:1270)
==7376== by 0x1322D8: __ecereNameSpace__ecere__com__eInstance_Evolve (instance.ec:4876)
==7376== by 0x120297: main (browser.main.ec:765)
==7376== Address 0xde87e30 is 720 bytes inside an unallocated block of size 3,789,952 in arena "client"
==7376==
==7376== Invalid write of size 8
==7376== at 0x4C3C904: memset (vg_replace_strmem.c:1270)
==7376== by 0x1322D8: __ecereNameSpace__ecere__com__eInstance_Evolve (instance.ec:4876)
==7376== by 0x120297: main (browser.main.ec:765)
==7376== Address 0xde87e38 is 728 bytes inside an unallocated block of size 3,789,952 in arena "client"
==7376==
==7376==
==7376== Process terminating with default action of signal 11 (SIGSEGV)
==7376== Access not within mapped region at address 0xE225000
==7376== at 0x4C3C907: memset (vg_replace_strmem.c:1270)
==7376== by 0x1322D8: __ecereNameSpace__ecere__com__eInstance_Evolve (instance.ec:4876)
==7376== by 0x120297: main (browser.main.ec:765)
==7376== If you believe this happened as a result of a stack
==7376== overflow in your program's main thread (unlikely but
==7376== possible), you can try to increase the size of the
==7376== main thread stack using the --main-stacksize= flag.
==7376== The main thread stack size used in this run was 8388608.
==7376==
==7376== HEAP SUMMARY:
==7376== in use at exit: 175,435 bytes in 1,773 blocks
==7376== total heap usage: 3,033 allocs, 1,260 frees, 196,428 bytes allocated
==7376==
==7376== LEAK SUMMARY:
==7376== definitely lost: 336 bytes in 6 blocks
==7376== indirectly lost: 21,031 bytes in 409 blocks
==7376== possibly lost: 160 bytes in 2 blocks
==7376== still reachable: 153,908 bytes in 1,356 blocks
==7376== of which reachable via heuristic:
==7376== length64 : 56,397 bytes in 609 blocks
==7376== suppressed: 0 bytes in 0 blocks
==7376== Rerun with --leak-check=full to see details of leaked memory
==7376==
==7376== For lists of detected and suppressed errors, rerun with: -s
==7376== ERROR SUMMARY: 473662 errors from 5 contexts (suppressed: 0 from 0)
valgrind: line 2: 7376 Segmentation fault (core dumped) valgrind $*

mingodad

2022-01-10 13:39

developer   ~0001512

Here is the output of the building through Netbeans:
=====
cd '/home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/nb/browser'
/usr/bin/make -f Makefile CONF=Debug clean
"/usr/bin/make" -f nbproject/Makefile-Debug.mk QMAKE= SUBPROJECTS= .clean-conf
make[1]: Entering directory '/home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/nb/browser'
cd ../libecere-dbg && /usr/bin/make -f Makefile CONF=Debug clean
make[2]: Entering directory '/home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/nb/libecere-dbg'
"/usr/bin/make" -f nbproject/Makefile-Debug.mk QMAKE= SUBPROJECTS= .clean-conf
make[3]: Entering directory '/home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/nb/libecere-dbg'
rm -f -r build/Debug
make[3]: Leaving directory '/home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/nb/libecere-dbg'
make[2]: Leaving directory '/home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/nb/libecere-dbg'
rm -f -r build/Debug
make[1]: Leaving directory '/home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/nb/browser'

CLEAN SUCCESSFUL (total time: 103ms)
cd '/home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/nb/browser'
/usr/bin/make -f Makefile CONF=Debug
"/usr/bin/make" -f nbproject/Makefile-Debug.mk QMAKE= SUBPROJECTS= .build-conf
make[1]: Entering directory '/home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/nb/browser'
cd ../libecere-dbg && /usr/bin/make -f Makefile CONF=Debug
make[2]: Entering directory '/home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/nb/libecere-dbg'
"/usr/bin/make" -f nbproject/Makefile-Debug.mk QMAKE= SUBPROJECTS= .build-conf
make[3]: Entering directory '/home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/nb/libecere-dbg'
"/usr/bin/make" -f nbproject/Makefile-Debug.mk dist/Debug/GNU-Linux/liblibecere-dbg.a
make[4]: Entering directory '/home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/nb/libecere-dbg'
mkdir -p build/Debug/GNU-Linux/_ext/f2886c21
rm -f "build/Debug/GNU-Linux/_ext/f2886c21/instance.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/f2886c21/instance.o.d" -o build/Debug/GNU-Linux/_ext/f2886c21/instance.o ../../ecere/src/com/instance.c
mkdir -p build/Debug/GNU-Linux/_ext/eccb3715
rm -f "build/Debug/GNU-Linux/_ext/eccb3715/cc.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/eccb3715/cc.o.d" -o build/Debug/GNU-Linux/_ext/eccb3715/cc.o ../../ecere/src/gfx/newFonts/cc/cc.c
mkdir -p build/Debug/GNU-Linux/_ext/eccb3715
rm -f "build/Debug/GNU-Linux/_ext/eccb3715/ccstr.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/eccb3715/ccstr.o.d" -o build/Debug/GNU-Linux/_ext/eccb3715/ccstr.o ../../ecere/src/gfx/newFonts/cc/ccstr.c
mkdir -p build/Debug/GNU-Linux/_ext/eccb3715
rm -f "build/Debug/GNU-Linux/_ext/eccb3715/mm.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/eccb3715/mm.o.d" -o build/Debug/GNU-Linux/_ext/eccb3715/mm.o ../../ecere/src/gfx/newFonts/cc/mm.c
mkdir -p build/Debug/GNU-Linux/_ext/eccb3715
rm -f "build/Debug/GNU-Linux/_ext/eccb3715/mmbitmap.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/eccb3715/mmbitmap.o.d" -o build/Debug/GNU-Linux/_ext/eccb3715/mmbitmap.o ../../ecere/src/gfx/newFonts/cc/mmbitmap.c
mkdir -p build/Debug/GNU-Linux/_ext/eccb3715
rm -f "build/Debug/GNU-Linux/_ext/eccb3715/mmhash.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/eccb3715/mmhash.o.d" -o build/Debug/GNU-Linux/_ext/eccb3715/mmhash.o ../../ecere/src/gfx/newFonts/cc/mmhash.c
mkdir -p build/Debug/GNU-Linux/_ext/f288a96d
rm -f "build/Debug/GNU-Linux/_ext/f288a96d/DualPipe.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/f288a96d/DualPipe.o.d" -o build/Debug/GNU-Linux/_ext/f288a96d/DualPipe.o ../../ecere/src/sys/DualPipe.c
mkdir -p build/Debug/GNU-Linux/_ext/f288a96d
rm -f "build/Debug/GNU-Linux/_ext/f288a96d/File.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/f288a96d/File.o.d" -o build/Debug/GNU-Linux/_ext/f288a96d/File.o ../../ecere/src/sys/File.c
../../ecere/src/sys/File.c: In function ‘__wrap_fcntl64’:
../../ecere/src/sys/File.c:113:12: warning: implicit declaration of function ‘fcntl64’; did you mean ‘fcntl’? [-Wimplicit-function-declaration]
  113 | return fcntl64(fd, cmd);
      | ^~~~~~~
      | fcntl
mkdir -p build/Debug/GNU-Linux/_ext/f288a96d
rm -f "build/Debug/GNU-Linux/_ext/f288a96d/System.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/f288a96d/System.o.d" -o build/Debug/GNU-Linux/_ext/f288a96d/System.o ../../ecere/src/sys/System.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/AVLTree.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/AVLTree.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/AVLTree.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/AVLTree.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/Anchor.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/Anchor.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/Anchor.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/Anchor.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/Archive.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/Archive.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/Archive.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/Archive.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/Array.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/Array.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/Array.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/Array.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/BMPFormat.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/BMPFormat.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/BMPFormat.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/BMPFormat.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/BTNode.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/BTNode.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/BTNode.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/BTNode.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/BinaryTree.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/BinaryTree.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/BinaryTree.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/BinaryTree.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/Bitmap.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/Bitmap.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/Bitmap.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/Bitmap.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/BitmapResource.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/BitmapResource.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/BitmapResource.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/BitmapResource.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/BufferedFile.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/BufferedFile.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/BufferedFile.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/BufferedFile.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/BuiltInContainer.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/BuiltInContainer.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/BuiltInContainer.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/BuiltInContainer.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/Button.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/Button.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/Button.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/Button.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/CalendarControl.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/CalendarControl.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/CalendarControl.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/CalendarControl.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/Camera.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/Camera.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/Camera.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/Camera.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/ClipBoard.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/ClipBoard.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/ClipBoard.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/ClipBoard.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/Color.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/Color.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/Color.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/Color.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/ColorPicker.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/ColorPicker.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/ColorPicker.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/ColorPicker.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/Condition.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/Condition.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/Condition.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/Condition.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/Container.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/Container.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/Container.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/Container.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/Cube.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/Cube.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/Cube.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/Cube.c
src/gfx/3D/meshes/Cube.ec: In function ‘__ecereMethod___ecereNameSpace__ecere__gfx3D__meshes__Cube_Create’:
src/gfx/3D/meshes/Cube.ec:22:85: warning: passing argument 2 of ‘__ecereMethod___ecereNameSpace__ecere__gfx3D__Object_InitializeMesh’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
src/gfx/3D/meshes/Cube.ec:22:47: note: expected ‘struct __ecereNameSpace__ecere__com__Instance *’ but argument is of type ‘const struct __ecereNameSpace__ecere__com__Instance *’
src/gfx/3D/meshes/Cube.ec:26:197: warning: passing argument 4 of ‘__ecereMethod___ecereNameSpace__ecere__gfx3D__Mesh_Allocate’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
src/gfx/3D/meshes/Cube.ec:26:208: note: expected ‘struct __ecereNameSpace__ecere__com__Instance *’ but argument is of type ‘const struct __ecereNameSpace__ecere__com__Instance *’
src/gfx/3D/meshes/Cube.ec:92:103: warning: passing argument 1 of ‘__ecereMethod___ecereNameSpace__ecere__gfx__DisplaySystem_AddNamedMaterial’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
src/gfx/3D/meshes/Cube.ec:92:51: note: expected ‘struct __ecereNameSpace__ecere__com__Instance *’ but argument is of type ‘const struct __ecereNameSpace__ecere__com__Instance *’
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/Cursor.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/Cursor.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/Cursor.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/Cursor.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/CustomAVLTree.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/CustomAVLTree.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/CustomAVLTree.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/CustomAVLTree.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/DataBox.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/DataBox.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/DataBox.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/DataBox.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/Date.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/Date.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/Date.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/Date.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/Desktop3D.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/Desktop3D.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/Desktop3D.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/Desktop3D.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/Display.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/Display.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/Display.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/Display.c
src/gfx/Display.ec: In function ‘__ecereNameSpace__ecere__gfx__intersectTriangle’:
src/gfx/Display.ec:1600:75: warning: passing argument 1 of ‘__ecereMethod___ecereNameSpace__ecere__gfx3D__Vector3D_DotProduct’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
src/gfx/Display.ec:1600:124: note: expected ‘struct __ecereNameSpace__ecere__gfx3D__Vector3D *’ but argument is of type ‘const struct __ecereNameSpace__ecere__gfx3D__Vector3D *’
src/gfx/Display.ec: In function ‘__ecereMethod___ecereNameSpace__ecere__gfx__Display3D_PickPrimitivesEx’:
src/gfx/Display.ec:1805:80: warning: passing argument 1 of ‘__ecereMethod___ecereNameSpace__ecere__gfx3D__Vector3D_DotProduct’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
src/gfx/Display.ec:1600:124: note: expected ‘struct __ecereNameSpace__ecere__gfx3D__Vector3D *’ but argument is of type ‘const struct __ecereNameSpace__ecere__gfx3D__Vector3D *’
src/gfx/Display.ec:1842:68: warning: passing argument 1 of ‘__ecereMethod___ecereNameSpace__ecere__gfx3D__Plane_IntersectLine’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
src/gfx/Display.ec:1842:119: note: expected ‘struct __ecereNameSpace__ecere__gfx3D__Plane *’ but argument is of type ‘const struct __ecereNameSpace__ecere__gfx3D__Plane *’
src/gfx/Display.ec:1854:68: warning: passing argument 1 of ‘__ecereMethod___ecereNameSpace__ecere__gfx3D__Plane_IntersectLine’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
src/gfx/Display.ec:1842:119: note: expected ‘struct __ecereNameSpace__ecere__gfx3D__Plane *’ but argument is of type ‘const struct __ecereNameSpace__ecere__gfx3D__Plane *’
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/DisplaySystem.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/DisplaySystem.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/DisplaySystem.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/DisplaySystem.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/DropBox.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/DropBox.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/DropBox.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/DropBox.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/DualPipe.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/DualPipe.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/DualPipe.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/DualPipe.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/EARArchive.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/EARArchive.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/EARArchive.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/EARArchive.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/ETC2Format.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/ETC2Format.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/ETC2Format.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/ETC2Format.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/EditBox.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/EditBox.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/EditBox.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/EditBox.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/File.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/File.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/File.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/File.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/FileDialog.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/FileDialog.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/FileDialog.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/FileDialog.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/FileMonitor.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/FileMonitor.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/FileMonitor.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/FileMonitor.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/FindDialog.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/FindDialog.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/FindDialog.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/FindDialog.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/FontResource.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/FontResource.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/FontResource.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/FontResource.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/FormDesigner.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/FormDesigner.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/FormDesigner.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/FormDesigner.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/GIFFormat.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/GIFFormat.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/GIFFormat.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/GIFFormat.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/GLMultiDraw.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/GLMultiDraw.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/GLMultiDraw.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/GLMultiDraw.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/GlobalAppSettings.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/GlobalAppSettings.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/GlobalAppSettings.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/GlobalAppSettings.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/GoToDialog.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/GoToDialog.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/GoToDialog.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/GoToDialog.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/GuiApplication.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/GuiApplication.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/GuiApplication.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/GuiApplication.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/HTTPFile.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/HTTPFile.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/HTTPFile.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/HTTPFile.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/HashMap.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/HashMap.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/HashMap.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/HashMap.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/HashTable.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/HashTable.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/HashTable.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/HashTable.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/Interface.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/Interface.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/Interface.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/Interface.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/JPEGFormat.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/JPEGFormat.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/JPEGFormat.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/JPEGFormat.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/JSON.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/JSON.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/JSON.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/JSON.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/JSONGlobalSettings.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/JSONGlobalSettings.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/JSONGlobalSettings.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/JSONGlobalSettings.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/Key.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/Key.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/Key.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/Key.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/LFBDisplayDriver.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/LFBDisplayDriver.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/LFBDisplayDriver.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/LFBDisplayDriver.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/Label.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/Label.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/Label.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/Label.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/LinkList.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/LinkList.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/LinkList.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/LinkList.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/List.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/List.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/List.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/List.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/ListBox.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/ListBox.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/ListBox.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/ListBox.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/Map.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/Map.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/Map.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/Map.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/Matrix.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/Matrix.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/Matrix.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/Matrix.c
src/gfx/3D/Matrix.ec: In function ‘__ecereMethod___ecereNameSpace__ecere__gfx3D__Matrix_Inverse’:
src/gfx/3D/Matrix.ec:169:79: warning: passing argument 1 of ‘__ecereMethod___ecereNameSpace__ecere__gfx3D__Matrix_Determinant’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
obj/release.linux.debug/Matrix.c:2016:121: note: expected ‘struct __ecereNameSpace__ecere__gfx3D__Matrix *’ but argument is of type ‘const struct __ecereNameSpace__ecere__gfx3D__Matrix *’
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/Menu.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/Menu.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/Menu.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/Menu.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/Mesh.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/Mesh.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/Mesh.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/Mesh.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/MessageBox.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/MessageBox.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/MessageBox.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/MessageBox.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/Mutex.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/Mutex.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/Mutex.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/Mutex.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/NCursesDisplayDriver.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/NCursesDisplayDriver.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/NCursesDisplayDriver.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/NCursesDisplayDriver.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/NCursesInterface.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/NCursesInterface.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/NCursesInterface.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/NCursesInterface.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/NetworkClientFile.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/NetworkClientFile.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/NetworkClientFile.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/NetworkClientFile.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/Object.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/Object.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/Object.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/Object.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/Object3DSFormat.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/Object3DSFormat.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/Object3DSFormat.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/Object3DSFormat.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/OldList.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/OldList.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/OldList.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/OldList.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/OpenGLDisplayDriver.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/OpenGLDisplayDriver.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/OpenGLDisplayDriver.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/OpenGLDisplayDriver.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/PCXFormat.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/PCXFormat.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/PCXFormat.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/PCXFormat.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/PNGFormat.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/PNGFormat.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/PNGFormat.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/PNGFormat.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/PaneSplitter.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/PaneSplitter.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/PaneSplitter.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/PaneSplitter.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/PathBox.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/PathBox.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/PathBox.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/PathBox.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/Picture.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/Picture.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/Picture.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/Picture.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/Plane.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/Plane.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/Plane.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/Plane.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/ProgressBar.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/ProgressBar.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/ProgressBar.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/ProgressBar.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/Quaternion.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/Quaternion.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/Quaternion.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/Quaternion.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/RGBFormat.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/RGBFormat.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/RGBFormat.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/RGBFormat.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/ReplaceDialog.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/ReplaceDialog.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/ReplaceDialog.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/ReplaceDialog.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/Resource.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/Resource.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/Resource.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/Resource.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/SSLSocket.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/SSLSocket.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/SSLSocket.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/SSLSocket.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/ScrollBar.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/ScrollBar.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/ScrollBar.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/ScrollBar.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/SelectorBar.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/SelectorBar.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/SelectorBar.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/SelectorBar.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/Semaphore.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/Semaphore.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/Semaphore.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/Semaphore.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/Service.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/Service.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/Service.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/Service.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/Skin.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/Skin.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/Skin.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/Skin.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/SkyBox.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/SkyBox.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/SkyBox.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/SkyBox.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/Socket.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/Socket.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/Socket.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/Socket.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/Sphere.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/Sphere.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/Sphere.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/Sphere.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/Stacker.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/Stacker.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/Stacker.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/Stacker.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/StatusBar.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/StatusBar.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/StatusBar.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/StatusBar.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/String.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/String.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/String.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/String.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/Surface.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/Surface.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/Surface.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/Surface.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/System.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/System.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/System.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/System.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/TVisionSkin.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/TVisionSkin.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/TVisionSkin.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/TVisionSkin.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/TabControl.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/TabControl.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/TabControl.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/TabControl.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/TempFile.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/TempFile.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/TempFile.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/TempFile.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/Thread.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/Thread.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/Thread.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/Thread.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/Time.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/Time.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/Time.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/Time.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/Timer.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/Timer.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/Timer.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/Timer.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/ToolTip.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/ToolTip.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/ToolTip.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/ToolTip.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/Vector3D.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/Vector3D.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/Vector3D.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/Vector3D.c
src/gfx/3D/Vector3D.ec: In function ‘__ecereMethod___ecereNameSpace__ecere__gfx3D__Vector3D_Normalize’:
src/gfx/3D/Vector3D.ec:49:76: warning: passing argument 1 of ‘__ecereProp___ecereNameSpace__ecere__gfx3D__Vector3D_Get_length’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
obj/release.linux.debug/Vector3D.c:2580:122: note: expected ‘struct __ecereNameSpace__ecere__gfx3D__Vector3D *’ but argument is of type ‘const struct __ecereNameSpace__ecere__gfx3D__Vector3D *’
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/Window.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/Window.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/Window.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/Window.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/WindowList.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/WindowList.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/WindowList.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/WindowList.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/WindowsSkin.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/WindowsSkin.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/WindowsSkin.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/WindowsSkin.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/XDisplayDriver.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/XDisplayDriver.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/XDisplayDriver.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/XDisplayDriver.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/XInterface.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/XInterface.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/XInterface.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/XInterface.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/atlasBuilder.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/atlasBuilder.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/atlasBuilder.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/atlasBuilder.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/dataTypes.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/dataTypes.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/dataTypes.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/dataTypes.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/dcom.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/dcom.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/dcom.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/dcom.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/defaultShader.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/defaultShader.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/defaultShader.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/defaultShader.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/drawManager.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/drawManager.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/drawManager.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/drawManager.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/ecere.main.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/ecere.main.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/ecere.main.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/ecere.main.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/fmFontManager.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/fmFontManager.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/fmFontManager.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/fmFontManager.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/fontManagement.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/fontManagement.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/fontManagement.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/fontManagement.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/fontRenderer.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/fontRenderer.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/fontRenderer.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/fontRenderer.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/fontRendering.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/fontRendering.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/fontRendering.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/fontRendering.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/glab.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/glab.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/glab.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/glab.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/i18n.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/i18n.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/i18n.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/i18n.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/imgDistMap.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/imgDistMap.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/imgDistMap.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/imgDistMap.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/immediate.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/immediate.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/immediate.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/immediate.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/instance.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/instance.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/instance.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/instance.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/lfbBlit.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/lfbBlit.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/lfbBlit.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/lfbBlit.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/lfbConvert.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/lfbConvert.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/lfbConvert.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/lfbConvert.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/matrixStack.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/matrixStack.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/matrixStack.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/matrixStack.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/memory.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/memory.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/memory.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/memory.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/network.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/network.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/network.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/network.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/shaders.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/shaders.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/shaders.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/shaders.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/textureManager.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/textureManager.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/textureManager.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/textureManager.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/typeEdit.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/typeEdit.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/typeEdit.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/typeEdit.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/unicode.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/unicode.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/unicode.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/unicode.c
mkdir -p build/Debug/GNU-Linux/_ext/c709c435
rm -f "build/Debug/GNU-Linux/_ext/c709c435/units.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/c709c435/units.o.d" -o build/Debug/GNU-Linux/_ext/c709c435/units.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/obj/release.linux.debug/units.c
mkdir -p build/Debug/GNU-Linux/_ext/358f16c4
rm -f "build/Debug/GNU-Linux/_ext/358f16c4/gl_compat_4_4.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/358f16c4/gl_compat_4_4.o.d" -o build/Debug/GNU-Linux/_ext/358f16c4/gl_compat_4_4.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/src/gfx/drivers/gl3/gl_compat_4_4.c
mkdir -p build/Debug/GNU-Linux/_ext/582e242a
rm -f "build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-arabic.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-arabic.o.d" -o build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-arabic.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/src/gfx/drivers/harfbuzz/harfbuzz-arabic.c
mkdir -p build/Debug/GNU-Linux/_ext/582e242a
rm -f "build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-buffer.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-buffer.o.d" -o build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-buffer.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/src/gfx/drivers/harfbuzz/harfbuzz-buffer.c
mkdir -p build/Debug/GNU-Linux/_ext/582e242a
rm -f "build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-gdef.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-gdef.o.d" -o build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-gdef.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/src/gfx/drivers/harfbuzz/harfbuzz-gdef.c
mkdir -p build/Debug/GNU-Linux/_ext/582e242a
rm -f "build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-gpos.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-gpos.o.d" -o build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-gpos.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/src/gfx/drivers/harfbuzz/harfbuzz-gpos.c
mkdir -p build/Debug/GNU-Linux/_ext/582e242a
rm -f "build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-gsub.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-gsub.o.d" -o build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-gsub.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/src/gfx/drivers/harfbuzz/harfbuzz-gsub.c
mkdir -p build/Debug/GNU-Linux/_ext/582e242a
rm -f "build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-hangul.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-hangul.o.d" -o build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-hangul.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/src/gfx/drivers/harfbuzz/harfbuzz-hangul.c
mkdir -p build/Debug/GNU-Linux/_ext/582e242a
rm -f "build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-hebrew.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-hebrew.o.d" -o build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-hebrew.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/src/gfx/drivers/harfbuzz/harfbuzz-hebrew.c
mkdir -p build/Debug/GNU-Linux/_ext/582e242a
rm -f "build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-impl.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-impl.o.d" -o build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-impl.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/src/gfx/drivers/harfbuzz/harfbuzz-impl.c
mkdir -p build/Debug/GNU-Linux/_ext/582e242a
rm -f "build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-indic.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-indic.o.d" -o build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-indic.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/src/gfx/drivers/harfbuzz/harfbuzz-indic.c
mkdir -p build/Debug/GNU-Linux/_ext/582e242a
rm -f "build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-khmer.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-khmer.o.d" -o build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-khmer.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/src/gfx/drivers/harfbuzz/harfbuzz-khmer.c
mkdir -p build/Debug/GNU-Linux/_ext/582e242a
rm -f "build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-myanmar.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-myanmar.o.d" -o build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-myanmar.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/src/gfx/drivers/harfbuzz/harfbuzz-myanmar.c
mkdir -p build/Debug/GNU-Linux/_ext/582e242a
rm -f "build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-open.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-open.o.d" -o build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-open.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/src/gfx/drivers/harfbuzz/harfbuzz-open.c
mkdir -p build/Debug/GNU-Linux/_ext/582e242a
rm -f "build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-shaper.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-shaper.o.d" -o build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-shaper.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/src/gfx/drivers/harfbuzz/harfbuzz-shaper.c
mkdir -p build/Debug/GNU-Linux/_ext/582e242a
rm -f "build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-stream.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-stream.o.d" -o build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-stream.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/src/gfx/drivers/harfbuzz/harfbuzz-stream.c
mkdir -p build/Debug/GNU-Linux/_ext/582e242a
rm -f "build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-thai.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-thai.o.d" -o build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-thai.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/src/gfx/drivers/harfbuzz/harfbuzz-thai.c
mkdir -p build/Debug/GNU-Linux/_ext/582e242a
rm -f "build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-tibetan.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-tibetan.o.d" -o build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-tibetan.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/src/gfx/drivers/harfbuzz/harfbuzz-tibetan.c
mkdir -p build/Debug/GNU-Linux/_ext/3e4011f8
rm -f "build/Debug/GNU-Linux/_ext/3e4011f8/harfbuzz-freetype.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/3e4011f8/harfbuzz-freetype.o.d" -o build/Debug/GNU-Linux/_ext/3e4011f8/harfbuzz-freetype.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/src/gfx/drivers/harfbuzz/unicode/harfbuzz-freetype.c
mkdir -p build/Debug/GNU-Linux/_ext/3e4011f8
rm -f "build/Debug/GNU-Linux/_ext/3e4011f8/harfbuzz-unicode-tables.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/3e4011f8/harfbuzz-unicode-tables.o.d" -o build/Debug/GNU-Linux/_ext/3e4011f8/harfbuzz-unicode-tables.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/src/gfx/drivers/harfbuzz/unicode/harfbuzz-unicode-tables.c
mkdir -p build/Debug/GNU-Linux/_ext/3e4011f8
rm -f "build/Debug/GNU-Linux/_ext/3e4011f8/harfbuzz-unicode.o.d"
gcc -c -g -Wall -DDISABLE_MEMMGR -D_DEBUG -I../../ecere/src/gfx/drivers/gl3 -I../../ecere/src/gfx/drivers/harfbuzz -I/usr/include/freetype2 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/3e4011f8/harfbuzz-unicode.o.d" -o build/Debug/GNU-Linux/_ext/3e4011f8/harfbuzz-unicode.o /home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/ecere/src/gfx/drivers/harfbuzz/unicode/harfbuzz-unicode.c
mkdir -p dist/Debug/GNU-Linux
rm -f dist/Debug/GNU-Linux/liblibecere-dbg.a
ar -rv dist/Debug/GNU-Linux/liblibecere-dbg.a build/Debug/GNU-Linux/_ext/f2886c21/instance.o build/Debug/GNU-Linux/_ext/eccb3715/cc.o build/Debug/GNU-Linux/_ext/eccb3715/ccstr.o build/Debug/GNU-Linux/_ext/eccb3715/mm.o build/Debug/GNU-Linux/_ext/eccb3715/mmbitmap.o build/Debug/GNU-Linux/_ext/eccb3715/mmhash.o build/Debug/GNU-Linux/_ext/f288a96d/DualPipe.o build/Debug/GNU-Linux/_ext/f288a96d/File.o build/Debug/GNU-Linux/_ext/f288a96d/System.o build/Debug/GNU-Linux/_ext/c709c435/AVLTree.o build/Debug/GNU-Linux/_ext/c709c435/Anchor.o build/Debug/GNU-Linux/_ext/c709c435/Archive.o build/Debug/GNU-Linux/_ext/c709c435/Array.o build/Debug/GNU-Linux/_ext/c709c435/BMPFormat.o build/Debug/GNU-Linux/_ext/c709c435/BTNode.o build/Debug/GNU-Linux/_ext/c709c435/BinaryTree.o build/Debug/GNU-Linux/_ext/c709c435/Bitmap.o build/Debug/GNU-Linux/_ext/c709c435/BitmapResource.o build/Debug/GNU-Linux/_ext/c709c435/BufferedFile.o build/Debug/GNU-Linux/_ext/c709c435/BuiltInContainer.o build/Debug/GNU-Linux/_ext/c709c435/Button.o build/Debug/GNU-Linux/_ext/c709c435/CalendarControl.o build/Debug/GNU-Linux/_ext/c709c435/Camera.o build/Debug/GNU-Linux/_ext/c709c435/ClipBoard.o build/Debug/GNU-Linux/_ext/c709c435/Color.o build/Debug/GNU-Linux/_ext/c709c435/ColorPicker.o build/Debug/GNU-Linux/_ext/c709c435/Condition.o build/Debug/GNU-Linux/_ext/c709c435/Container.o build/Debug/GNU-Linux/_ext/c709c435/Cube.o build/Debug/GNU-Linux/_ext/c709c435/Cursor.o build/Debug/GNU-Linux/_ext/c709c435/CustomAVLTree.o build/Debug/GNU-Linux/_ext/c709c435/DataBox.o build/Debug/GNU-Linux/_ext/c709c435/Date.o build/Debug/GNU-Linux/_ext/c709c435/Desktop3D.o build/Debug/GNU-Linux/_ext/c709c435/Display.o build/Debug/GNU-Linux/_ext/c709c435/DisplaySystem.o build/Debug/GNU-Linux/_ext/c709c435/DropBox.o build/Debug/GNU-Linux/_ext/c709c435/DualPipe.o build/Debug/GNU-Linux/_ext/c709c435/EARArchive.o build/Debug/GNU-Linux/_ext/c709c435/ETC2Format.o build/Debug/GNU-Linux/_ext/c709c435/EditBox.o build/Debug/GNU-Linux/_ext/c709c435/File.o build/Debug/GNU-Linux/_ext/c709c435/FileDialog.o build/Debug/GNU-Linux/_ext/c709c435/FileMonitor.o build/Debug/GNU-Linux/_ext/c709c435/FindDialog.o build/Debug/GNU-Linux/_ext/c709c435/FontResource.o build/Debug/GNU-Linux/_ext/c709c435/FormDesigner.o build/Debug/GNU-Linux/_ext/c709c435/GIFFormat.o build/Debug/GNU-Linux/_ext/c709c435/GLMultiDraw.o build/Debug/GNU-Linux/_ext/c709c435/GlobalAppSettings.o build/Debug/GNU-Linux/_ext/c709c435/GoToDialog.o build/Debug/GNU-Linux/_ext/c709c435/GuiApplication.o build/Debug/GNU-Linux/_ext/c709c435/HTTPFile.o build/Debug/GNU-Linux/_ext/c709c435/HashMap.o build/Debug/GNU-Linux/_ext/c709c435/HashTable.o build/Debug/GNU-Linux/_ext/c709c435/Interface.o build/Debug/GNU-Linux/_ext/c709c435/JPEGFormat.o build/Debug/GNU-Linux/_ext/c709c435/JSON.o build/Debug/GNU-Linux/_ext/c709c435/JSONGlobalSettings.o build/Debug/GNU-Linux/_ext/c709c435/Key.o build/Debug/GNU-Linux/_ext/c709c435/LFBDisplayDriver.o build/Debug/GNU-Linux/_ext/c709c435/Label.o build/Debug/GNU-Linux/_ext/c709c435/LinkList.o build/Debug/GNU-Linux/_ext/c709c435/List.o build/Debug/GNU-Linux/_ext/c709c435/ListBox.o build/Debug/GNU-Linux/_ext/c709c435/Map.o build/Debug/GNU-Linux/_ext/c709c435/Matrix.o build/Debug/GNU-Linux/_ext/c709c435/Menu.o build/Debug/GNU-Linux/_ext/c709c435/Mesh.o build/Debug/GNU-Linux/_ext/c709c435/MessageBox.o build/Debug/GNU-Linux/_ext/c709c435/Mutex.o build/Debug/GNU-Linux/_ext/c709c435/NCursesDisplayDriver.o build/Debug/GNU-Linux/_ext/c709c435/NCursesInterface.o build/Debug/GNU-Linux/_ext/c709c435/NetworkClientFile.o build/Debug/GNU-Linux/_ext/c709c435/Object.o build/Debug/GNU-Linux/_ext/c709c435/Object3DSFormat.o build/Debug/GNU-Linux/_ext/c709c435/OldList.o build/Debug/GNU-Linux/_ext/c709c435/OpenGLDisplayDriver.o build/Debug/GNU-Linux/_ext/c709c435/PCXFormat.o build/Debug/GNU-Linux/_ext/c709c435/PNGFormat.o build/Debug/GNU-Linux/_ext/c709c435/PaneSplitter.o build/Debug/GNU-Linux/_ext/c709c435/PathBox.o build/Debug/GNU-Linux/_ext/c709c435/Picture.o build/Debug/GNU-Linux/_ext/c709c435/Plane.o build/Debug/GNU-Linux/_ext/c709c435/ProgressBar.o build/Debug/GNU-Linux/_ext/c709c435/Quaternion.o build/Debug/GNU-Linux/_ext/c709c435/RGBFormat.o build/Debug/GNU-Linux/_ext/c709c435/ReplaceDialog.o build/Debug/GNU-Linux/_ext/c709c435/Resource.o build/Debug/GNU-Linux/_ext/c709c435/SSLSocket.o build/Debug/GNU-Linux/_ext/c709c435/ScrollBar.o build/Debug/GNU-Linux/_ext/c709c435/SelectorBar.o build/Debug/GNU-Linux/_ext/c709c435/Semaphore.o build/Debug/GNU-Linux/_ext/c709c435/Service.o build/Debug/GNU-Linux/_ext/c709c435/Skin.o build/Debug/GNU-Linux/_ext/c709c435/SkyBox.o build/Debug/GNU-Linux/_ext/c709c435/Socket.o build/Debug/GNU-Linux/_ext/c709c435/Sphere.o build/Debug/GNU-Linux/_ext/c709c435/Stacker.o build/Debug/GNU-Linux/_ext/c709c435/StatusBar.o build/Debug/GNU-Linux/_ext/c709c435/String.o build/Debug/GNU-Linux/_ext/c709c435/Surface.o build/Debug/GNU-Linux/_ext/c709c435/System.o build/Debug/GNU-Linux/_ext/c709c435/TVisionSkin.o build/Debug/GNU-Linux/_ext/c709c435/TabControl.o build/Debug/GNU-Linux/_ext/c709c435/TempFile.o build/Debug/GNU-Linux/_ext/c709c435/Thread.o build/Debug/GNU-Linux/_ext/c709c435/Time.o build/Debug/GNU-Linux/_ext/c709c435/Timer.o build/Debug/GNU-Linux/_ext/c709c435/ToolTip.o build/Debug/GNU-Linux/_ext/c709c435/Vector3D.o build/Debug/GNU-Linux/_ext/c709c435/Window.o build/Debug/GNU-Linux/_ext/c709c435/WindowList.o build/Debug/GNU-Linux/_ext/c709c435/WindowsSkin.o build/Debug/GNU-Linux/_ext/c709c435/XDisplayDriver.o build/Debug/GNU-Linux/_ext/c709c435/XInterface.o build/Debug/GNU-Linux/_ext/c709c435/atlasBuilder.o build/Debug/GNU-Linux/_ext/c709c435/dataTypes.o build/Debug/GNU-Linux/_ext/c709c435/dcom.o build/Debug/GNU-Linux/_ext/c709c435/defaultShader.o build/Debug/GNU-Linux/_ext/c709c435/drawManager.o build/Debug/GNU-Linux/_ext/c709c435/ecere.main.o build/Debug/GNU-Linux/_ext/c709c435/fmFontManager.o build/Debug/GNU-Linux/_ext/c709c435/fontManagement.o build/Debug/GNU-Linux/_ext/c709c435/fontRenderer.o build/Debug/GNU-Linux/_ext/c709c435/fontRendering.o build/Debug/GNU-Linux/_ext/c709c435/glab.o build/Debug/GNU-Linux/_ext/c709c435/i18n.o build/Debug/GNU-Linux/_ext/c709c435/imgDistMap.o build/Debug/GNU-Linux/_ext/c709c435/immediate.o build/Debug/GNU-Linux/_ext/c709c435/instance.o build/Debug/GNU-Linux/_ext/c709c435/lfbBlit.o build/Debug/GNU-Linux/_ext/c709c435/lfbConvert.o build/Debug/GNU-Linux/_ext/c709c435/matrixStack.o build/Debug/GNU-Linux/_ext/c709c435/memory.o build/Debug/GNU-Linux/_ext/c709c435/network.o build/Debug/GNU-Linux/_ext/c709c435/shaders.o build/Debug/GNU-Linux/_ext/c709c435/textureManager.o build/Debug/GNU-Linux/_ext/c709c435/typeEdit.o build/Debug/GNU-Linux/_ext/c709c435/unicode.o build/Debug/GNU-Linux/_ext/c709c435/units.o build/Debug/GNU-Linux/_ext/358f16c4/gl_compat_4_4.o build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-arabic.o build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-buffer.o build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-gdef.o build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-gpos.o build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-gsub.o build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-hangul.o build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-hebrew.o build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-impl.o build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-indic.o build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-khmer.o build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-myanmar.o build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-open.o build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-shaper.o build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-stream.o build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-thai.o build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-tibetan.o build/Debug/GNU-Linux/_ext/3e4011f8/harfbuzz-freetype.o build/Debug/GNU-Linux/_ext/3e4011f8/harfbuzz-unicode-tables.o build/Debug/GNU-Linux/_ext/3e4011f8/harfbuzz-unicode.o
ar: creating dist/Debug/GNU-Linux/liblibecere-dbg.a
a - build/Debug/GNU-Linux/_ext/f2886c21/instance.o
a - build/Debug/GNU-Linux/_ext/eccb3715/cc.o
a - build/Debug/GNU-Linux/_ext/eccb3715/ccstr.o
a - build/Debug/GNU-Linux/_ext/eccb3715/mm.o
a - build/Debug/GNU-Linux/_ext/eccb3715/mmbitmap.o
a - build/Debug/GNU-Linux/_ext/eccb3715/mmhash.o
a - build/Debug/GNU-Linux/_ext/f288a96d/DualPipe.o
a - build/Debug/GNU-Linux/_ext/f288a96d/File.o
a - build/Debug/GNU-Linux/_ext/f288a96d/System.o
a - build/Debug/GNU-Linux/_ext/c709c435/AVLTree.o
a - build/Debug/GNU-Linux/_ext/c709c435/Anchor.o
a - build/Debug/GNU-Linux/_ext/c709c435/Archive.o
a - build/Debug/GNU-Linux/_ext/c709c435/Array.o
a - build/Debug/GNU-Linux/_ext/c709c435/BMPFormat.o
a - build/Debug/GNU-Linux/_ext/c709c435/BTNode.o
a - build/Debug/GNU-Linux/_ext/c709c435/BinaryTree.o
a - build/Debug/GNU-Linux/_ext/c709c435/Bitmap.o
a - build/Debug/GNU-Linux/_ext/c709c435/BitmapResource.o
a - build/Debug/GNU-Linux/_ext/c709c435/BufferedFile.o
a - build/Debug/GNU-Linux/_ext/c709c435/BuiltInContainer.o
a - build/Debug/GNU-Linux/_ext/c709c435/Button.o
a - build/Debug/GNU-Linux/_ext/c709c435/CalendarControl.o
a - build/Debug/GNU-Linux/_ext/c709c435/Camera.o
a - build/Debug/GNU-Linux/_ext/c709c435/ClipBoard.o
a - build/Debug/GNU-Linux/_ext/c709c435/Color.o
a - build/Debug/GNU-Linux/_ext/c709c435/ColorPicker.o
a - build/Debug/GNU-Linux/_ext/c709c435/Condition.o
a - build/Debug/GNU-Linux/_ext/c709c435/Container.o
a - build/Debug/GNU-Linux/_ext/c709c435/Cube.o
a - build/Debug/GNU-Linux/_ext/c709c435/Cursor.o
a - build/Debug/GNU-Linux/_ext/c709c435/CustomAVLTree.o
a - build/Debug/GNU-Linux/_ext/c709c435/DataBox.o
a - build/Debug/GNU-Linux/_ext/c709c435/Date.o
a - build/Debug/GNU-Linux/_ext/c709c435/Desktop3D.o
a - build/Debug/GNU-Linux/_ext/c709c435/Display.o
a - build/Debug/GNU-Linux/_ext/c709c435/DisplaySystem.o
a - build/Debug/GNU-Linux/_ext/c709c435/DropBox.o
a - build/Debug/GNU-Linux/_ext/c709c435/DualPipe.o
a - build/Debug/GNU-Linux/_ext/c709c435/EARArchive.o
a - build/Debug/GNU-Linux/_ext/c709c435/ETC2Format.o
a - build/Debug/GNU-Linux/_ext/c709c435/EditBox.o
a - build/Debug/GNU-Linux/_ext/c709c435/File.o
a - build/Debug/GNU-Linux/_ext/c709c435/FileDialog.o
a - build/Debug/GNU-Linux/_ext/c709c435/FileMonitor.o
a - build/Debug/GNU-Linux/_ext/c709c435/FindDialog.o
a - build/Debug/GNU-Linux/_ext/c709c435/FontResource.o
a - build/Debug/GNU-Linux/_ext/c709c435/FormDesigner.o
a - build/Debug/GNU-Linux/_ext/c709c435/GIFFormat.o
a - build/Debug/GNU-Linux/_ext/c709c435/GLMultiDraw.o
a - build/Debug/GNU-Linux/_ext/c709c435/GlobalAppSettings.o
a - build/Debug/GNU-Linux/_ext/c709c435/GoToDialog.o
a - build/Debug/GNU-Linux/_ext/c709c435/GuiApplication.o
a - build/Debug/GNU-Linux/_ext/c709c435/HTTPFile.o
a - build/Debug/GNU-Linux/_ext/c709c435/HashMap.o
a - build/Debug/GNU-Linux/_ext/c709c435/HashTable.o
a - build/Debug/GNU-Linux/_ext/c709c435/Interface.o
a - build/Debug/GNU-Linux/_ext/c709c435/JPEGFormat.o
a - build/Debug/GNU-Linux/_ext/c709c435/JSON.o
a - build/Debug/GNU-Linux/_ext/c709c435/JSONGlobalSettings.o
a - build/Debug/GNU-Linux/_ext/c709c435/Key.o
a - build/Debug/GNU-Linux/_ext/c709c435/LFBDisplayDriver.o
a - build/Debug/GNU-Linux/_ext/c709c435/Label.o
a - build/Debug/GNU-Linux/_ext/c709c435/LinkList.o
a - build/Debug/GNU-Linux/_ext/c709c435/List.o
a - build/Debug/GNU-Linux/_ext/c709c435/ListBox.o
a - build/Debug/GNU-Linux/_ext/c709c435/Map.o
a - build/Debug/GNU-Linux/_ext/c709c435/Matrix.o
a - build/Debug/GNU-Linux/_ext/c709c435/Menu.o
a - build/Debug/GNU-Linux/_ext/c709c435/Mesh.o
a - build/Debug/GNU-Linux/_ext/c709c435/MessageBox.o
a - build/Debug/GNU-Linux/_ext/c709c435/Mutex.o
a - build/Debug/GNU-Linux/_ext/c709c435/NCursesDisplayDriver.o
a - build/Debug/GNU-Linux/_ext/c709c435/NCursesInterface.o
a - build/Debug/GNU-Linux/_ext/c709c435/NetworkClientFile.o
a - build/Debug/GNU-Linux/_ext/c709c435/Object.o
a - build/Debug/GNU-Linux/_ext/c709c435/Object3DSFormat.o
a - build/Debug/GNU-Linux/_ext/c709c435/OldList.o
a - build/Debug/GNU-Linux/_ext/c709c435/OpenGLDisplayDriver.o
a - build/Debug/GNU-Linux/_ext/c709c435/PCXFormat.o
a - build/Debug/GNU-Linux/_ext/c709c435/PNGFormat.o
a - build/Debug/GNU-Linux/_ext/c709c435/PaneSplitter.o
a - build/Debug/GNU-Linux/_ext/c709c435/PathBox.o
a - build/Debug/GNU-Linux/_ext/c709c435/Picture.o
a - build/Debug/GNU-Linux/_ext/c709c435/Plane.o
a - build/Debug/GNU-Linux/_ext/c709c435/ProgressBar.o
a - build/Debug/GNU-Linux/_ext/c709c435/Quaternion.o
a - build/Debug/GNU-Linux/_ext/c709c435/RGBFormat.o
a - build/Debug/GNU-Linux/_ext/c709c435/ReplaceDialog.o
a - build/Debug/GNU-Linux/_ext/c709c435/Resource.o
a - build/Debug/GNU-Linux/_ext/c709c435/SSLSocket.o
a - build/Debug/GNU-Linux/_ext/c709c435/ScrollBar.o
a - build/Debug/GNU-Linux/_ext/c709c435/SelectorBar.o
a - build/Debug/GNU-Linux/_ext/c709c435/Semaphore.o
a - build/Debug/GNU-Linux/_ext/c709c435/Service.o
a - build/Debug/GNU-Linux/_ext/c709c435/Skin.o
a - build/Debug/GNU-Linux/_ext/c709c435/SkyBox.o
a - build/Debug/GNU-Linux/_ext/c709c435/Socket.o
a - build/Debug/GNU-Linux/_ext/c709c435/Sphere.o
a - build/Debug/GNU-Linux/_ext/c709c435/Stacker.o
a - build/Debug/GNU-Linux/_ext/c709c435/StatusBar.o
a - build/Debug/GNU-Linux/_ext/c709c435/String.o
a - build/Debug/GNU-Linux/_ext/c709c435/Surface.o
a - build/Debug/GNU-Linux/_ext/c709c435/System.o
a - build/Debug/GNU-Linux/_ext/c709c435/TVisionSkin.o
a - build/Debug/GNU-Linux/_ext/c709c435/TabControl.o
a - build/Debug/GNU-Linux/_ext/c709c435/TempFile.o
a - build/Debug/GNU-Linux/_ext/c709c435/Thread.o
a - build/Debug/GNU-Linux/_ext/c709c435/Time.o
a - build/Debug/GNU-Linux/_ext/c709c435/Timer.o
a - build/Debug/GNU-Linux/_ext/c709c435/ToolTip.o
a - build/Debug/GNU-Linux/_ext/c709c435/Vector3D.o
a - build/Debug/GNU-Linux/_ext/c709c435/Window.o
a - build/Debug/GNU-Linux/_ext/c709c435/WindowList.o
a - build/Debug/GNU-Linux/_ext/c709c435/WindowsSkin.o
a - build/Debug/GNU-Linux/_ext/c709c435/XDisplayDriver.o
a - build/Debug/GNU-Linux/_ext/c709c435/XInterface.o
a - build/Debug/GNU-Linux/_ext/c709c435/atlasBuilder.o
a - build/Debug/GNU-Linux/_ext/c709c435/dataTypes.o
a - build/Debug/GNU-Linux/_ext/c709c435/dcom.o
a - build/Debug/GNU-Linux/_ext/c709c435/defaultShader.o
a - build/Debug/GNU-Linux/_ext/c709c435/drawManager.o
a - build/Debug/GNU-Linux/_ext/c709c435/ecere.main.o
a - build/Debug/GNU-Linux/_ext/c709c435/fmFontManager.o
a - build/Debug/GNU-Linux/_ext/c709c435/fontManagement.o
a - build/Debug/GNU-Linux/_ext/c709c435/fontRenderer.o
a - build/Debug/GNU-Linux/_ext/c709c435/fontRendering.o
a - build/Debug/GNU-Linux/_ext/c709c435/glab.o
a - build/Debug/GNU-Linux/_ext/c709c435/i18n.o
a - build/Debug/GNU-Linux/_ext/c709c435/imgDistMap.o
a - build/Debug/GNU-Linux/_ext/c709c435/immediate.o
a - build/Debug/GNU-Linux/_ext/c709c435/instance.o
a - build/Debug/GNU-Linux/_ext/c709c435/lfbBlit.o
a - build/Debug/GNU-Linux/_ext/c709c435/lfbConvert.o
a - build/Debug/GNU-Linux/_ext/c709c435/matrixStack.o
a - build/Debug/GNU-Linux/_ext/c709c435/memory.o
a - build/Debug/GNU-Linux/_ext/c709c435/network.o
a - build/Debug/GNU-Linux/_ext/c709c435/shaders.o
a - build/Debug/GNU-Linux/_ext/c709c435/textureManager.o
a - build/Debug/GNU-Linux/_ext/c709c435/typeEdit.o
a - build/Debug/GNU-Linux/_ext/c709c435/unicode.o
a - build/Debug/GNU-Linux/_ext/c709c435/units.o
a - build/Debug/GNU-Linux/_ext/358f16c4/gl_compat_4_4.o
a - build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-arabic.o
a - build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-buffer.o
a - build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-gdef.o
a - build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-gpos.o
a - build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-gsub.o
a - build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-hangul.o
a - build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-hebrew.o
a - build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-impl.o
a - build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-indic.o
a - build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-khmer.o
a - build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-myanmar.o
a - build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-open.o
a - build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-shaper.o
a - build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-stream.o
a - build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-thai.o
a - build/Debug/GNU-Linux/_ext/582e242a/harfbuzz-tibetan.o
a - build/Debug/GNU-Linux/_ext/3e4011f8/harfbuzz-freetype.o
a - build/Debug/GNU-Linux/_ext/3e4011f8/harfbuzz-unicode-tables.o
a - build/Debug/GNU-Linux/_ext/3e4011f8/harfbuzz-unicode.o
ranlib dist/Debug/GNU-Linux/liblibecere-dbg.a
make[4]: Leaving directory '/home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/nb/libecere-dbg'
make[3]: Leaving directory '/home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/nb/libecere-dbg'
make[2]: Leaving directory '/home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/nb/libecere-dbg'
"/usr/bin/make" -f nbproject/Makefile-Debug.mk dist/Debug/GNU-Linux/browser
make[2]: Entering directory '/home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/nb/browser'
mkdir -p build/Debug/GNU-Linux/_ext/cbdb1682
rm -f "build/Debug/GNU-Linux/_ext/cbdb1682/HTMLView.o.d"
gcc -c -g -Wall -D_DEBUG -std=c11 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/cbdb1682/HTMLView.o.d" -o build/Debug/GNU-Linux/_ext/cbdb1682/HTMLView.o ../../samples/net/browser/obj/debug.linux/HTMLView.c
mkdir -p build/Debug/GNU-Linux/_ext/cbdb1682
rm -f "build/Debug/GNU-Linux/_ext/cbdb1682/browser.o.d"
gcc -c -g -Wall -D_DEBUG -std=c11 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/cbdb1682/browser.o.d" -o build/Debug/GNU-Linux/_ext/cbdb1682/browser.o ../../samples/net/browser/obj/debug.linux/browser.c
mkdir -p build/Debug/GNU-Linux/_ext/cbdb1682
rm -f "build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o.d"
gcc -c -g -Wall -D_DEBUG -std=c11 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o.d" -o build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o ../../samples/net/browser/obj/debug.linux/browser.main.c
mkdir -p build/Debug/GNU-Linux/_ext/cbdb1682
rm -f "build/Debug/GNU-Linux/_ext/cbdb1682/htmlParser.o.d"
gcc -c -g -Wall -D_DEBUG -std=c11 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/cbdb1682/htmlParser.o.d" -o build/Debug/GNU-Linux/_ext/cbdb1682/htmlParser.o ../../samples/net/browser/obj/debug.linux/htmlParser.c
mkdir -p build/Debug/GNU-Linux/_ext/cbdb1682
rm -f "build/Debug/GNU-Linux/_ext/cbdb1682/lines.o.d"
gcc -c -g -Wall -D_DEBUG -std=c11 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/cbdb1682/lines.o.d" -o build/Debug/GNU-Linux/_ext/cbdb1682/lines.o ../../samples/net/browser/obj/debug.linux/lines.c
mkdir -p build/Debug/GNU-Linux/_ext/cbdb1682
rm -f "build/Debug/GNU-Linux/_ext/cbdb1682/tables.o.d"
gcc -c -g -Wall -D_DEBUG -std=c11 -MMD -MP -MF "build/Debug/GNU-Linux/_ext/cbdb1682/tables.o.d" -o build/Debug/GNU-Linux/_ext/cbdb1682/tables.o ../../samples/net/browser/obj/debug.linux/tables.c
mkdir -p dist/Debug/GNU-Linux
gcc -o dist/Debug/GNU-Linux/browser build/Debug/GNU-Linux/_ext/cbdb1682/HTMLView.o build/Debug/GNU-Linux/_ext/cbdb1682/browser.o build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o build/Debug/GNU-Linux/_ext/cbdb1682/htmlParser.o build/Debug/GNU-Linux/_ext/cbdb1682/lines.o build/Debug/GNU-Linux/_ext/cbdb1682/tables.o ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a -ljpeg -lpng -lz -lfreetype -lcurl -lncurses -lpthread -lm -ldl -lfontconfig -lgif -lX11 -lXext -lXrender -lGL -lssl -lcrypto -lcurl
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereMethod___ecereNameSpace__ecere__sys__OldList_Add' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(OldList.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereMethod___ecereNameSpace__ecere__sys__OldList_Add' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 222 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(OldList.o)
/usr/bin/ld: Warning: type of symbol `__ecereMethod___ecereNameSpace__ecere__sys__OldList_Add' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(OldList.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(OldList.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 351 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(OldList.o)
/usr/bin/ld: Warning: type of symbol `__ecereMethod___ecereNameSpace__ecere__sys__OldList_Insert' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(OldList.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereMethod___ecereNameSpace__ecere__sys__OldList_Remove' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(OldList.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereMethod___ecereNameSpace__ecere__sys__OldList_Remove' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 288 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(OldList.o)
/usr/bin/ld: Warning: type of symbol `__ecereMethod___ecereNameSpace__ecere__sys__OldList_Remove' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(OldList.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereMethod___ecereNameSpace__ecere__sys__OldList_Free' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(OldList.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereMethod___ecereNameSpace__ecere__sys__OldList_Free' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 173 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(OldList.o)
/usr/bin/ld: Warning: type of symbol `__ecereMethod___ecereNameSpace__ecere__sys__OldList_Free' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(OldList.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereMethod___ecereNameSpace__ecere__sys__OldList_Move' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(OldList.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereMethod___ecereNameSpace__ecere__sys__OldList_Move' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 490 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(OldList.o)
/usr/bin/ld: Warning: type of symbol `__ecereMethod___ecereNameSpace__ecere__sys__OldList_Move' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(OldList.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereMethod___ecereNameSpace__ecere__sys__OldList_Delete' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(OldList.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereMethod___ecereNameSpace__ecere__sys__OldList_Delete' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 65 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(OldList.o)
/usr/bin/ld: Warning: type of symbol `__ecereMethod___ecereNameSpace__ecere__sys__OldList_Delete' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(OldList.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__Bitmap_Convert' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Bitmap.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__Bitmap_Convert' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 168 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Bitmap.o)
/usr/bin/ld: Warning: type of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__Bitmap_Convert' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Bitmap.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__Bitmap_MakeDD' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Bitmap.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__Bitmap_MakeDD' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 287 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Bitmap.o)
/usr/bin/ld: Warning: type of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__Bitmap_MakeDD' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Bitmap.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__Bitmap_LoadFromFile' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Bitmap.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__Bitmap_LoadFromFile' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 526 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Bitmap.o)
/usr/bin/ld: Warning: type of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__Bitmap_LoadFromFile' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Bitmap.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gfx__BitmapResource_Get_bitmap' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(BitmapResource.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gfx__BitmapResource_Get_bitmap' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 70 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(BitmapResource.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gfx__BitmapResource_Get_bitmap' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(BitmapResource.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gfx__BitmapResource_Get_fileName' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(BitmapResource.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gfx__BitmapResource_Get_fileName' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 69 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(BitmapResource.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gfx__BitmapResource_Get_fileName' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(BitmapResource.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gfx__BitmapResource_Set_fileName' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(BitmapResource.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gfx__BitmapResource_Set_fileName' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 262 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(BitmapResource.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gfx__BitmapResource_Set_fileName' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(BitmapResource.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gfx__BitmapResource_Set_bitmap' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(BitmapResource.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gfx__BitmapResource_Set_bitmap' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 201 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(BitmapResource.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gfx__BitmapResource_Set_bitmap' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(BitmapResource.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gfx__BitmapResource_Set_window' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(BitmapResource.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gfx__BitmapResource_Set_window' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 185 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(BitmapResource.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gfx__BitmapResource_Set_window' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(BitmapResource.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__Button_Get_isRadio' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Button.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__Button_Get_isRadio' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 60 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Button.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__Button_Get_isRadio' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Button.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__Button_Get_isCheckbox' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Button.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__Button_Get_isCheckbox' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 60 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Button.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__Button_Get_isCheckbox' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Button.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__Button_Get_bevel' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Button.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__Button_Get_bevel' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 57 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Button.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__Button_Get_bevel' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Button.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__Button_Get_bevelOver' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Button.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__Button_Get_bevelOver' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 60 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Button.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__Button_Get_bevelOver' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Button.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__Button_Set_bevelOver' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Button.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__Button_Set_bevelOver' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 251 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Button.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__Button_Set_bevelOver' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Button.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__Button_Get_bitmap' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Button.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__Button_Get_bitmap' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 56 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Button.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__Button_Get_bitmap' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Button.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__Button_Set_bevel' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Button.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__Button_Set_bevel' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 333 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Button.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__Button_Set_bevel' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Button.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__Button_Set_bitmap' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Button.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__Button_Set_bitmap' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 580 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Button.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__Button_Set_bitmap' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Button.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__Button_Set_isRadio' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Button.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__Button_Set_isRadio' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 986 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Button.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__Button_Set_isRadio' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Button.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__Button_Set_isCheckbox' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Button.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__Button_Set_isCheckbox' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 447 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Button.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__Button_Set_isCheckbox' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Button.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gfx__ColorAlpha_Get___ecereNameSpace__ecere__gfx__Color' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Color.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gfx__ColorAlpha_Get___ecereNameSpace__ecere__gfx__Color' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 17 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Color.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gfx__ColorAlpha_Get___ecereNameSpace__ecere__gfx__Color' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Color.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gfx__ColorAlpha_Set___ecereNameSpace__ecere__gfx__Color' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Color.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gfx__ColorAlpha_Set___ecereNameSpace__ecere__gfx__Color' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 17 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Color.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gfx__ColorAlpha_Set___ecereNameSpace__ecere__gfx__Color' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Color.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__Display_Lock' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Display.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__Display_Lock' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 269 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Display.o)
/usr/bin/ld: Warning: type of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__Display_Lock' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Display.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__Display_Unlock' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Display.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__Display_Unlock' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 227 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Display.o)
/usr/bin/ld: Warning: type of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__Display_Unlock' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Display.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__Display_GetSurface' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Display.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__Display_GetSurface' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 528 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Display.o)
/usr/bin/ld: Warning: type of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__Display_GetSurface' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Display.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__DisplaySystem_UnloadFont' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(DisplaySystem.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__DisplaySystem_UnloadFont' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 142 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(DisplaySystem.o)
/usr/bin/ld: Warning: type of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__DisplaySystem_UnloadFont' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(DisplaySystem.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__DisplaySystem_LoadFont' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(DisplaySystem.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__DisplaySystem_LoadFont' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 101 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(DisplaySystem.o)
/usr/bin/ld: Warning: type of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__DisplaySystem_LoadFont' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(DisplaySystem.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__EditBox_Get_contents' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(EditBox.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__EditBox_Get_contents' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 103 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(EditBox.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__EditBox_Get_contents' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(EditBox.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereMethod___ecereNameSpace__ecere__gui__controls__EditBox_Clear' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(EditBox.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereMethod___ecereNameSpace__ecere__gui__controls__EditBox_Clear' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 196 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(EditBox.o)
/usr/bin/ld: Warning: type of symbol `__ecereMethod___ecereNameSpace__ecere__gui__controls__EditBox_Clear' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(EditBox.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__EditBox_Set_contents' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(EditBox.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__EditBox_Set_contents' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 400 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(EditBox.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__EditBox_Set_contents' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(EditBox.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereMethod___ecereNameSpace__ecere__gui__controls__EditBox_PutS' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(EditBox.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereMethod___ecereNameSpace__ecere__gui__controls__EditBox_PutS' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 112 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(EditBox.o)
/usr/bin/ld: Warning: type of symbol `__ecereMethod___ecereNameSpace__ecere__gui__controls__EditBox_PutS' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(EditBox.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereMethod___ecereNameSpace__ecere__sys__File_CopyTo' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(File.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereMethod___ecereNameSpace__ecere__sys__File_CopyTo' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 865 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(File.o)
/usr/bin/ld: Warning: type of symbol `__ecereMethod___ecereNameSpace__ecere__sys__File_CopyTo' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(File.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__dialogs__FileDialog_Get_type' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(FileDialog.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__dialogs__FileDialog_Get_type' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 54 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(FileDialog.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__dialogs__FileDialog_Get_type' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(FileDialog.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__dialogs__FileDialog_Get_filePath' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(FileDialog.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__dialogs__FileDialog_Get_filePath' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 58 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(FileDialog.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__dialogs__FileDialog_Get_filePath' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(FileDialog.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__dialogs__FileDialog_Get_currentDirectory' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(FileDialog.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__dialogs__FileDialog_Get_currentDirectory' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 58 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(FileDialog.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__dialogs__FileDialog_Get_currentDirectory' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(FileDialog.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__dialogs__FileDialog_Set_filePath' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(FileDialog.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__dialogs__FileDialog_Set_filePath' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 201 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(FileDialog.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__dialogs__FileDialog_Set_filePath' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(FileDialog.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__dialogs__FileDialog_Set_currentDirectory' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(FileDialog.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__dialogs__FileDialog_Set_currentDirectory' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 226 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(FileDialog.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__dialogs__FileDialog_Set_currentDirectory' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(FileDialog.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__dialogs__FileDialog_Set_type' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(FileDialog.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__dialogs__FileDialog_Set_type' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 1829 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(FileDialog.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__dialogs__FileDialog_Set_type' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(FileDialog.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereMethod___ecereNameSpace__ecere__gui__GuiApplication_Lock' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(GuiApplication.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereMethod___ecereNameSpace__ecere__gui__GuiApplication_Lock' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 99 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(GuiApplication.o)
/usr/bin/ld: Warning: type of symbol `__ecereMethod___ecereNameSpace__ecere__gui__GuiApplication_Lock' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(GuiApplication.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereMethod___ecereNameSpace__ecere__gui__GuiApplication_Unlock' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(GuiApplication.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereMethod___ecereNameSpace__ecere__gui__GuiApplication_Unlock' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 99 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(GuiApplication.o)
/usr/bin/ld: Warning: type of symbol `__ecereMethod___ecereNameSpace__ecere__gui__GuiApplication_Unlock' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(GuiApplication.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereMethod___ecereNameSpace__ecere__gui__GuiApplication_GetCursor' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(GuiApplication.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereMethod___ecereNameSpace__ecere__gui__GuiApplication_GetCursor' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 69 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(GuiApplication.o)
/usr/bin/ld: Warning: type of symbol `__ecereMethod___ecereNameSpace__ecere__gui__GuiApplication_GetCursor' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(GuiApplication.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereMethod___ecereNameSpace__ecere__gui__GuiApplication_UpdateDisplay' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(GuiApplication.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereMethod___ecereNameSpace__ecere__gui__GuiApplication_UpdateDisplay' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 1031 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(GuiApplication.o)
/usr/bin/ld: Warning: type of symbol `__ecereMethod___ecereNameSpace__ecere__gui__GuiApplication_UpdateDisplay' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(GuiApplication.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__net__HTTPFile_Get_contentType' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(HTTPFile.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__net__HTTPFile_Get_contentType' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 56 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(HTTPFile.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__net__HTTPFile_Get_contentType' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(HTTPFile.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__net__HTTPFile_Get_contentDisposition' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(HTTPFile.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__net__HTTPFile_Get_contentDisposition' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 56 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(HTTPFile.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__net__HTTPFile_Get_contentDisposition' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(HTTPFile.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereMethod___ecereNameSpace__ecere__net__HTTPFile_OpenURL' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(HTTPFile.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereMethod___ecereNameSpace__ecere__net__HTTPFile_OpenURL' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 410 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(HTTPFile.o)
/usr/bin/ld: Warning: type of symbol `__ecereMethod___ecereNameSpace__ecere__net__HTTPFile_OpenURL' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(HTTPFile.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Key_Get___ecereNameSpace__ecere__gui__SmartKey' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Key.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Key_Get___ecereNameSpace__ecere__gui__SmartKey' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 375 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Key.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Key_Get___ecereNameSpace__ecere__gui__SmartKey' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Key.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__Label_Get_labeledWindow' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Label.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__Label_Get_labeledWindow' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 55 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Label.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__Label_Get_labeledWindow' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Label.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__Label_Set_labeledWindow' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Label.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__Label_Set_labeledWindow' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 430 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Label.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__Label_Set_labeledWindow' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Label.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__MenuItem_Set_text' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Menu.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__MenuItem_Set_text' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 325 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Menu.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__MenuItem_Set_text' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Menu.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__MenuItem_Set_accelerator' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Menu.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__MenuItem_Set_accelerator' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 1199 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Menu.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__MenuItem_Set_accelerator' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Menu.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__MenuItem_Set_hotKey' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Menu.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__MenuItem_Set_hotKey' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 168 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Menu.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__MenuItem_Set_hotKey' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Menu.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__Menu_Set_text' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Menu.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__Menu_Set_text' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 235 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Menu.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__Menu_Set_text' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Menu.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__Menu_Set_hotKey' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Menu.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__Menu_Set_hotKey' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 168 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Menu.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__Menu_Set_hotKey' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Menu.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__MenuItem_Set_parent' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Menu.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__MenuItem_Set_parent' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 235 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Menu.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__MenuItem_Set_parent' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Menu.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__Menu_Set_parent' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Menu.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__Menu_Set_parent' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 185 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Menu.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__controls__Menu_Set_parent' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Menu.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__dialogs__MessageBox_Set_contents' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(MessageBox.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__dialogs__MessageBox_Set_contents' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 427 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(MessageBox.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__dialogs__MessageBox_Set_contents' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(MessageBox.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereMethod___ecereNameSpace__ecere__sys__Mutex_Release' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Mutex.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereMethod___ecereNameSpace__ecere__sys__Mutex_Release' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 74 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Mutex.o)
/usr/bin/ld: Warning: type of symbol `__ecereMethod___ecereNameSpace__ecere__sys__Mutex_Release' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Mutex.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereMethod___ecereNameSpace__ecere__sys__Mutex_Wait' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Mutex.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereMethod___ecereNameSpace__ecere__sys__Mutex_Wait' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 69 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Mutex.o)
/usr/bin/ld: Warning: type of symbol `__ecereMethod___ecereNameSpace__ecere__sys__Mutex_Wait' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Mutex.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereMethod___ecereNameSpace__ecere__sys__Semaphore_Wait' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Semaphore.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereMethod___ecereNameSpace__ecere__sys__Semaphore_Wait' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 45 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Semaphore.o)
/usr/bin/ld: Warning: type of symbol `__ecereMethod___ecereNameSpace__ecere__sys__Semaphore_Wait' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Semaphore.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereMethod___ecereNameSpace__ecere__sys__Semaphore_Release' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Semaphore.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereMethod___ecereNameSpace__ecere__sys__Semaphore_Release' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 95 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Semaphore.o)
/usr/bin/ld: Warning: type of symbol `__ecereMethod___ecereNameSpace__ecere__sys__Semaphore_Release' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Semaphore.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gfx__Surface_Get_foreground' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gfx__Surface_Get_foreground' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 55 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gfx__Surface_Get_foreground' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gfx__Surface_Get_background' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gfx__Surface_Get_background' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 55 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gfx__Surface_Get_background' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gfx__Surface_Get_font' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gfx__Surface_Get_font' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 56 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gfx__Surface_Get_font' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gfx__Surface_Get_textOpacity' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gfx__Surface_Get_textOpacity' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 55 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gfx__Surface_Get_textOpacity' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__Surface_GetForeground' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__Surface_GetForeground' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 66 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o)
/usr/bin/ld: Warning: type of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__Surface_GetForeground' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__Surface_Area' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__Surface_Area' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 149 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o)
/usr/bin/ld: Warning: type of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__Surface_Area' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__Surface_Clear' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__Surface_Clear' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 126 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o)
/usr/bin/ld: Warning: type of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__Surface_Clear' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__Surface_WriteText' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__Surface_WriteText' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 166 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o)
/usr/bin/ld: Warning: type of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__Surface_WriteText' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__Surface_TextExtent' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__Surface_TextExtent' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 230 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o)
/usr/bin/ld: Warning: type of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__Surface_TextExtent' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__Surface_TextExtent2' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__Surface_TextExtent2' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 169 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o)
/usr/bin/ld: Warning: type of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__Surface_TextExtent2' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gfx__Surface_Set_foreground' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gfx__Surface_Set_foreground' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 238 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gfx__Surface_Set_foreground' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gfx__Surface_Set_background' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gfx__Surface_Set_background' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 238 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gfx__Surface_Set_background' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gfx__Surface_Set_font' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gfx__Surface_Set_font' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 263 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gfx__Surface_Set_font' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gfx__Surface_Set_textOpacity' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gfx__Surface_Set_textOpacity' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 238 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gfx__Surface_Set_textOpacity' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__Surface_SetForeground' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__Surface_SetForeground' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 136 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o)
/usr/bin/ld: Warning: type of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__Surface_SetForeground' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__Surface_SetBackground' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__Surface_SetBackground' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 136 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o)
/usr/bin/ld: Warning: type of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__Surface_SetBackground' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__Surface_TextFont' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__Surface_TextFont' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 161 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o)
/usr/bin/ld: Warning: type of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__Surface_TextFont' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__Surface_Blit' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__Surface_Blit' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 380 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o)
/usr/bin/ld: Warning: type of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__Surface_Blit' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__Surface_Stretch' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__Surface_Stretch' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 396 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o)
/usr/bin/ld: Warning: type of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__Surface_Stretch' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__Surface_Bevel' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__Surface_Bevel' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 558 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o)
/usr/bin/ld: Warning: type of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__Surface_Bevel' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__Surface_Tile' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__Surface_Tile' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 440 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o)
/usr/bin/ld: Warning: type of symbol `__ecereMethod___ecereNameSpace__ecere__gfx__Surface_Tile' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Surface.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereMethod___ecereNameSpace__ecere__sys__Thread_Create' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Thread.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereMethod___ecereNameSpace__ecere__sys__Thread_Create' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 170 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Thread.o)
/usr/bin/ld: Warning: type of symbol `__ecereMethod___ecereNameSpace__ecere__sys__Thread_Create' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Thread.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereMethod___ecereNameSpace__ecere__gui__Window_Capture' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereMethod___ecereNameSpace__ecere__gui__Window_Capture' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 257 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereMethod___ecereNameSpace__ecere__gui__Window_Capture' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_parent' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_parent' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 56 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_parent' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_master' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_master' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 79 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_master' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_caption' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_caption' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 56 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_caption' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_hotKey' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_hotKey' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 85 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_hotKey' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_background' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_background' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 63 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_background' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_borderStyle' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_borderStyle' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 58 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_borderStyle' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_hasMaximize' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_hasMaximize' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 61 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_hasMaximize' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_hasMinimize' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_hasMinimize' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 61 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_hasMinimize' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_hasClose' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_hasClose' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 61 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_hasClose' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_inactive' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_inactive' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 61 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_inactive' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_tabCycle' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_tabCycle' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 61 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_tabCycle' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_isDefault' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_isDefault' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 61 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_isDefault' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_hasMenuBar' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_hasMenuBar' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 61 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_hasMenuBar' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_hasStatusBar' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_hasStatusBar' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 61 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_hasStatusBar' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_menu' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_menu' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 59 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_menu' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_size' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_size' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 71 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_size' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_clientSize' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_clientSize' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 105 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_clientSize' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_initSize' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_initSize' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 71 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_initSize' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_anchor' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_anchor' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 180 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_anchor' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_position' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_position' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 71 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_position' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_disabled' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_disabled' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 68 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_disabled' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_state' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_state' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 72 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_state' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_visible' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_visible' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 92 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_visible' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_hasHorzScroll' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_hasHorzScroll' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 61 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_hasHorzScroll' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_hasVertScroll' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_hasVertScroll' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 61 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_hasVertScroll' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_scroll' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_scroll' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 71 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_scroll' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_fileName' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_fileName' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 59 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_fileName' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_id' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_id' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 59 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_id' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_cursor' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_cursor' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 59 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_cursor' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_is3D' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_is3D' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 68 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_is3D' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_created' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_created' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 68 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_created' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_displaySystem' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_displaySystem' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 94 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_displaySystem' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_horzScroll' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_horzScroll' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 59 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_horzScroll' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_vertScroll' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_vertScroll' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 59 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_vertScroll' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_rootWindow' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_rootWindow' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 59 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_rootWindow' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_icon' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_icon' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 59 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_icon' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_text' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_text' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 64 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_text' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_parent' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_parent' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 5489 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_parent' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_hotKey' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_hotKey' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 436 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_hotKey' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_tabCycle' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_tabCycle' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 187 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_tabCycle' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_id' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_id' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 174 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_id' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_is3D' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_is3D' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 201 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_is3D' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_icon' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_icon' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 308 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_icon' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_text' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_text' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 222 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_text' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_caption' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_caption' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 334 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_caption' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_inactive' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_inactive' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 933 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_inactive' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_display' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_display' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 147 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Get_display' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_master' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_master' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 736 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_master' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereMethod___ecereNameSpace__ecere__gui__Window_Move' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereMethod___ecereNameSpace__ecere__gui__Window_Move' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 563 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereMethod___ecereNameSpace__ecere__gui__Window_Move' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_isDefault' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_isDefault' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 549 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_isDefault' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_size' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_size' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 673 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_size' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_clientSize' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_clientSize' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 673 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_clientSize' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_anchor' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_anchor' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 985 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_anchor' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_position' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_position' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 604 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_position' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_disabled' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_disabled' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 263 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_disabled' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_visible' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_visible' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 2975 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_visible' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereMethod___ecereNameSpace__ecere__gui__Window_SetScrollArea' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereMethod___ecereNameSpace__ecere__gui__Window_SetScrollArea' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 555 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereMethod___ecereNameSpace__ecere__gui__Window_SetScrollArea' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_state' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_state' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 183 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_state' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereMethod___ecereNameSpace__ecere__gui__Window_Destroy' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereMethod___ecereNameSpace__ecere__gui__Window_Destroy' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 248 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereMethod___ecereNameSpace__ecere__gui__Window_Destroy' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereMethod___ecereNameSpace__ecere__gui__Window_MenuFileExit' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereMethod___ecereNameSpace__ecere__gui__Window_MenuFileExit' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 81 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereMethod___ecereNameSpace__ecere__gui__Window_MenuFileExit' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereMethod___ecereNameSpace__ecere__gui__Window_MakeActive' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereMethod___ecereNameSpace__ecere__gui__Window_MakeActive' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 102 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereMethod___ecereNameSpace__ecere__gui__Window_MakeActive' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereMethod___ecereNameSpace__ecere__gui__Window_CycleChildren' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereMethod___ecereNameSpace__ecere__gui__Window_CycleChildren' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 1854 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereMethod___ecereNameSpace__ecere__gui__Window_CycleChildren' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereMethod___ecereNameSpace__ecere__gui__Window_ReleaseCapture' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereMethod___ecereNameSpace__ecere__gui__Window_ReleaseCapture' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 377 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereMethod___ecereNameSpace__ecere__gui__Window_ReleaseCapture' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereMethod___ecereNameSpace__ecere__gui__Window_SetScrollPosition' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereMethod___ecereNameSpace__ecere__gui__Window_SetScrollPosition' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 1335 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereMethod___ecereNameSpace__ecere__gui__Window_SetScrollPosition' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_scroll' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_scroll' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 193 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_scroll' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereMethod___ecereNameSpace__ecere__gui__Window_Update' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereMethod___ecereNameSpace__ecere__gui__Window_Update' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 2411 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereMethod___ecereNameSpace__ecere__gui__Window_Update' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_background' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_background' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 313 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_background' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_cursor' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_cursor' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 186 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_cursor' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereMethod___ecereNameSpace__ecere__gui__Window_Modal' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereMethod___ecereNameSpace__ecere__gui__Window_Modal' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 141 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereMethod___ecereNameSpace__ecere__gui__Window_Modal' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_fileName' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_fileName' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 521 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_fileName' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_borderStyle' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_borderStyle' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 558 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_borderStyle' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_hasMaximize' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_hasMaximize' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 516 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_hasMaximize' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_hasMinimize' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_hasMinimize' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 516 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_hasMinimize' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_hasClose' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_hasClose' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 516 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_hasClose' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_hasHorzScroll' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_hasHorzScroll' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 467 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_hasHorzScroll' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_hasVertScroll' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_hasVertScroll' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 486 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_hasVertScroll' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereMethod___ecereNameSpace__ecere__gui__Window_Create' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereMethod___ecereNameSpace__ecere__gui__Window_Create' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 4819 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereMethod___ecereNameSpace__ecere__gui__Window_Create' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_hasMenuBar' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_hasMenuBar' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 946 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_hasMenuBar' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_hasStatusBar' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_hasStatusBar' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 527 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_hasStatusBar' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: alignment 1 of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_menu' in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o) is smaller than 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o
/usr/bin/ld: Warning: size of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_menu' changed from 8 in build/Debug/GNU-Linux/_ext/cbdb1682/browser.main.o to 774 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
/usr/bin/ld: Warning: type of symbol `__ecereProp___ecereNameSpace__ecere__gui__Window_Set_menu' changed from 1 to 2 in ../libecere-dbg/dist/Debug/GNU-Linux/liblibecere-dbg.a(Window.o)
make[2]: Leaving directory '/home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/nb/browser'
make[1]: Leaving directory '/home/mingo/dev/c/A_programming-languages/ecere-sdk-dad/nb/browser'

BUILD SUCCESSFUL (total time: 19s)

Issue History

Date Modified Username Field Change
2022-01-09 16:47 mingodad New Issue
2022-01-09 17:04 mingodad Note Added: 0001498
2022-01-09 17:17 mingodad Note Edited: 0001498 View Revisions
2022-01-10 02:32 jerome Note Added: 0001500
2022-01-10 02:33 jerome Assigned To => jerome
2022-01-10 02:33 jerome Status new => feedback
2022-01-10 02:34 jerome Assigned To jerome => mingodad
2022-01-10 02:35 jerome Note Edited: 0001500 View Revisions
2022-01-10 10:41 mingodad Note Added: 0001501
2022-01-10 11:40 mingodad Note Added: 0001503
2022-01-10 12:57 jerome Note Added: 0001504
2022-01-10 12:58 jerome Note Edited: 0001504 View Revisions
2022-01-10 12:59 jerome Note Edited: 0001504 View Revisions
2022-01-10 13:11 mingodad Note Added: 0001505
2022-01-10 13:19 mingodad Note Added: 0001507
2022-01-10 13:20 jerome Note Added: 0001508
2022-01-10 13:26 mingodad Note Added: 0001509
2022-01-10 13:29 jerome Note Edited: 0001508 View Revisions
2022-01-10 13:38 jerome Note Added: 0001510
2022-01-10 13:39 mingodad Note Added: 0001511
2022-01-10 13:39 mingodad Note Added: 0001512