From owner-freebsd-chromium@FreeBSD.ORG Mon Jul 16 09:03:40 2012 Return-Path: Delivered-To: freebsd-chromium@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2DBA6106564A for ; Mon, 16 Jul 2012 09:03:40 +0000 (UTC) (envelope-from saper@saper.info) Received: from l.saper.info (l.saper.info [IPv6:2001:41d0:1:d467::1000]) by mx1.freebsd.org (Postfix) with ESMTP id A82B08FC14 for ; Mon, 16 Jul 2012 09:03:39 +0000 (UTC) Received: from l.saper.info (saper@localhost [127.0.0.1]) by l.saper.info (8.14.5/8.14.5) with ESMTP id q6G93cgB070215 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Mon, 16 Jul 2012 09:03:38 GMT (envelope-from saper@saper.info) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=saper.info; s=Mar2008; t=1342429418; bh=sdjx5YZqa1buxLu6taT8ZhzYQJM3Ama6CWbqO4/HilA=; h=Date:From:To:Subject; b=dmEgu6/Vmw99sKpsmDqGZBTUrS2e/DNILv8l2+cy4pD0W4TJr7A06/lLuaflFKYq5 CVRTQkoCVB4IEKzfkiqdVOPPenRPuCfXCA60W83DvRGsPJln/lQ0+Q4bepsKsZiikb Kmgcc7JxVl4WAp3jnmCAmFnW96/GdSZO/6LIKq/Y= Received: from localhost (saper@localhost) by l.saper.info (8.14.5/8.14.5/Submit) with ESMTP id q6G93cvf070212 for ; Mon, 16 Jul 2012 09:03:38 GMT (envelope-from saper@saper.info) X-Authentication-Warning: l.saper.info: saper owned process doing -bs Date: Mon, 16 Jul 2012 09:03:38 +0000 From: Marcin Cieslak To: freebsd-chromium@freebsd.org Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=ISO-8859-2 Content-Transfer-Encoding: 8BIT Subject: Trouble compiling 20.0.1132.57 w/clang 3.0 (trunk 135360) 20110717 X-BeenThere: freebsd-chromium@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD-specific Chromium issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Jul 2012 09:03:40 -0000 Running $ clang --version FreeBSD clang version 3.0 (trunk 135360) 20110717 Target: x86_64-unknown-freebsd9.0 Thread model: posix FreeBSD radziecki.saper.info 9.0-BETA1 FreeBSD 9.0-BETA1 #2 r224912M: Tue Aug 16 23:05:15 CEST 2011 amd64 Up-to-date ports tree. Compilation of www/chromium fails at some moment with: In file included from sync/engine/apply_updates_command.cc:5: In file included from ./sync/engine/apply_updates_command.h:10: In file included from ./sync/engine/model_changing_syncer_command.h:10: In file included from ./sync/engine/model_safe_worker.h:15: In file included from ./sync/syncable/model_type.h:18: ./sync/util/enum_set.h:151:3: error: expected the class name after '~' to name the enclosing class ~EnumSet() {} ^ ./sync/util/cryptographer.h:245:26: note: in instantiation of template class 'browser_sync::EnumSet' requested here syncable::ModelTypeSet encrypted_types_; ^ In file included from sync/engine/build_commit_command.cc:5: In file included from ./sync/engine/build_commit_command.h:12: In file included from ./sync/engine/syncproto.h:12: In file included from ./sync/syncable/model_type.h:18: ./sync/util/enum_set.h:151:3: error: expected the class name after '~' to name the enclosing class ~EnumSet() {} ^ ./sync/util/cryptographer.h:245:26: note: in instantiation of template class 'browser_sync::EnumSet' requested here syncable::ModelTypeSet encrypted_types_; ^ In file included from sync/engine/apply_updates_command.cc:5: In file included from ./sync/engine/apply_updates_command.h:10: In file included from ./sync/engine/model_changing_syncer_command.h:10: In file included from ./sync/engine/model_safe_worker.h:15: In file included from ./sync/syncable/model_type.h:18: ./sync/util/enum_set.h:151:3: error: expected the class name after '~' to name the enclosing class ~EnumSet() {} ^ sync/engine/apply_updates_command.cc:23:30: note: in instantiation of template class 'browser_sync::EnumSet' requested here syncable::FullModelTypeSet server_types_with_unapplied_updates; ^ In file included from sync/engine/apply_updates_command.cc:5: In file included from ./sync/engine/apply_updates_command.h:10: In file included from ./sync/engine/model_changing_syncer_command.h:10: In file included from ./sync/engine/model_safe_worker.h:15: In file included from ./sync/syncable/model_type.h:18: ./sync/util/enum_set.h:84:5: error: expected the class name after '~' to name the enclosing class ~Iterator() {} ^ sync/engine/apply_updates_command.cc:31:45: note: in instantiation of member class 'browser_sync::EnumSet::Iterator' requested here for (syncable::FullModelTypeSet::Iterator it = ^ sync/engine/apply_updates_command.cc:49:30: error: no matching constructor for initialization of 'syncable::FullModelTypeSet' (aka 'EnumSet') syncable::FullModelTypeSet server_type_restriction; ^ ./sync/util/enum_set.h:44:7: note: candidate constructor (the implicit copy constructor) not viable: requires 1 argument, but 0 were provided class EnumSet { ^ sync/engine/apply_updates_command.cc:50:45: error: no viable conversion from 'browser_sync::EnumSet::Iterator' to 'syncable::FullModelTypeSet::Iterator' for (syncable::FullModelTypeSet::Iterator it = ^ ./sync/util/enum_set.h:78:9: note: candidate constructor (the implicit copy constructor) not viable: no known conversion from 'browser_sync::EnumSet::Iterator' to 'const browser_sync::EnumSet::Iterator &' for 1st argument class Iterator { ^ ./sync/util/enum_set.h:84:5: error: expected the class name after '~' to name the enclosing class ~Iterator() {} ^ sync/engine/apply_updates_command.cc:76:43: note: in instantiation of member class 'browser_sync::EnumSet::Iterator' requested here for (syncable::ModelTypeSet::Iterator it = ^ In file included from sync/engine/apply_updates_command.cc:5: In file included from ./sync/engine/apply_updates_command.h:10: In file included from ./sync/engine/model_changing_syncer_command.h:10: In file included from ./sync/engine/model_safe_worker.h:15: In file included from ./sync/syncable/model_type.h:18: ./sync/util/enum_set.h:222:21: error: 1 error generated. gmake: *** [out/Release/obj.target/sync/sync/engine/build_commit_command.o] Błąd 1 gmake: *** Oczekiwanie na niezakończone zadania.... 'browser_sync::EnumSet::enums_' is not a member of class 'const browser_sync::EnumSet' return Iterator(enums_); ^ sync/engine/apply_updates_command.cc:51:48: note: in instantiation of member function 'browser_sync::EnumSet::First' requested here server_types_with_unapplied_updates.First(); it.Good(); it.Inc()) { ^ In file included from sync/engine/apply_updates_command.cc:5: In file included from ./sync/engine/apply_updates_command.h:10: In file included from ./sync/engine/model_changing_syncer_command.h:10: In file included from ./sync/engine/model_safe_worker.h:15: In file included from ./sync/syncable/model_type.h:18: ./sync/util/enum_set.h:222:21: error: 'browser_sync::EnumSet::enums_' is not a member of class 'const browser_sync::EnumSet' return Iterator(enums_); ^ sync/engine/apply_updates_command.cc:77:45: note: in instantiation of member function 'browser_sync::EnumSet::First' requested here status.updates_request_types().First(); it.Good(); it.Inc()) { ^ 8 errors generated. gmake: *** [out/Release/obj.target/sync/sync/engine/apply_updates_command.o] Błąd 1 Probably something with my environment, any hints? //Marcin