chromium 37 up for testing (and polishing)
Miguel Clara
miguelmclara at gmail.com
Wed Aug 27 00:50:01 UTC 2014
Thanks Carlos and René for you're hard work!
Are this changes on the port already?
I was trying to build the port on poudriere and it fails, so I wonder if
this is related to the patches.
poudriere 10-amd64 jail
tail -30
/usr/local/poudriere/data/logs/bulk/10x64-default/latest/logs/chromium-37.0.2062.94.log
In file included from ../../ui/gl/gl_bindings.h:230:
gen/ui/gl/gl_bindings_autogen_gl.h:70:81: error: unknown type name
'GLeglImageOES'
typedef void (GL_BINDING_CALL *glEGLImageTargetTexture2DOESProc)(GLenum
target, GLeglImageOES image);
^
gen/ui/gl/gl_bindings_autogen_gl.h:71:91: error: unknown type name
'GLeglImageOES'
typedef void (GL_BINDING_CALL
*glEGLImageTargetRenderbufferStorageOESProc)(GLenum target, GLeglImageOES
image);
^
gen/ui/gl/gl_bindings_autogen_gl.h:543:62: error: unknown type name
'GLeglImageOES'
virtual void glEGLImageTargetTexture2DOESFn(GLenum target, GLeglImageOES
image) = 0;
^
gen/ui/gl/gl_bindings_autogen_gl.h:544:72: error: unknown type name
'GLeglImageOES'
virtual void glEGLImageTargetRenderbufferStorageOESFn(GLenum target,
GLeglImageOES image) = 0;
^
In file included from ../../gpu/command_buffer/service/buffer_manager.cc:10:
In file included from ../../gpu/command_buffer/service/context_state.h:16:
../../gpu/command_buffer/service/vertex_attrib_manager.h:204:29: error: use
of undeclared identifier 'GL_FIXED'
if (attrib->type() == GL_FIXED) {
^
../../gpu/command_buffer/service/vertex_attrib_manager.h:207:19: error: use
of undeclared identifier 'GL_FIXED'
if (type == GL_FIXED) {
^
6 errors generated.
ninja: build stopped: subcommand failed.
*** Error code 1
Stop.
Melhores Cumprimentos // Best Regards
-----------------------------------------------
*Miguel Clara*
*IT - Sys Admin & Developer*
*E-mail: *miguelmclara at gmail.com
www.linkedin.com/in/miguelmclara/
On Tue, Aug 26, 2014 at 6:25 PM, Carlos Jacobo Puga Medina <cpm at fbsd.es>
wrote:
> On Tue, 26 Aug 2014 18:39:10 +0200
> René Ladan <rene at freebsd.org> wrote:
>
> > > 2014-08-26 15:36 GMT+02:00 Carlos Jacobo Puga Medina <cpm at fbsd.es>:
> > >
> > > Finally, I installed chromium 37.0.2062.94 on 11-CURRENT/i386. I built
> it
> > > with clang 3.4.1. I need to check further before have a respetable
> opinion,
> > > but for now it looks pretty cool.
> > >
> > > The following patches fix chromium build with Clang
> > >
> > > I still don't get why they are needed (strictly speaking), chromium
> builds
> > fine in my 11-i386 vm having only the dependencies of chromium (and pkg
> and
> > panicmail) installed.
> >
> > But if people insist I'll just add them.
>
> Do it if you consider it necessary, but I needed these patches to fix
> typedefs errors (a bunch of course). Also, it solved the same problem in
> chromium-36.0.1985.143.
>
> >
> > Rene
> >
> >
> > > --- ./gpu/command_buffer/common/gles2_cmd_format.h.orig 2014-08-20
> > > 21:02:37.000000000 +0200
> > > +++ ./gpu/command_buffer/common/gles2_cmd_format.h 2014-08-25
> > > 23:47:01.000000000 +0200
> > > @@ -39,8 +39,8 @@
> > > typedef double GLdouble;
> > > typedef double GLclampd;
> > > typedef void GLvoid;
> > > -typedef khronos_intptr_t GLintptr;
> > > -typedef khronos_ssize_t GLsizeiptr;
> > > +typedef ptrdiff_t GLintptr;
> > > +typedef ptrdiff_t GLsizeiptr;
> > >
> > > namespace gpu {
> > > namespace gles2 {
> > >
> > > --- ./gpu/skia_bindings/gl_bindings_skia_cmd_buffer.cc.orig
> 2014-08-24
> > > 12:26:40.000000000 +0200
> > > +++ ./gpu/skia_bindings/gl_bindings_skia_cmd_buffer.cc 2014-08-24
> > > 12:33:01.000000000 +0200
> > > @@ -31,8 +31,8 @@
> > > functions->fBindVertexArray = glBindVertexArrayOES;
> > > functions->fBlendColor = glBlendColor;
> > > functions->fBlendFunc = glBlendFunc;
> > > - functions->fBufferData = glBufferData;
> > > - functions->fBufferSubData = glBufferSubData;
> > > + functions->fBufferData = (GrGLBufferDataProc)glBufferData;
> > > + functions->fBufferSubData = (GrGLBufferSubDataProc)glBufferSubData;
> > > functions->fClear = glClear;
> > > functions->fClearColor = glClearColor;
> > > functions->fClearStencil = glClearStencil;
> > > @@ -74,7 +74,7 @@
> > > functions->fInsertEventMarker = glInsertEventMarkerEXT;
> > > functions->fLineWidth = glLineWidth;
> > > functions->fLinkProgram = glLinkProgram;
> > > - functions->fMapBufferSubData = glMapBufferSubDataCHROMIUM;
> > > + functions->fMapBufferSubData =
> > > (GrGLMapBufferSubDataProc)glMapBufferSubDataCHROMIUM;
> > > functions->fMapTexSubImage2D = glMapTexSubImage2DCHROMIUM;
> > > functions->fPixelStorei = glPixelStorei;
> > > functions->fPopGroupMarker = glPopGroupMarkerEXT;
> > >
> > > --- ./ppapi/c/ppb_opengles2.h.orig 2014-08-25 23:42:52.000000000
> +0200
> > > +++ ./ppapi/c/ppb_opengles2.h 2014-08-25 23:44:21.000000000 +0200
> > > @@ -34,8 +34,8 @@
> > > typedef long long int GLintptr;
> > > typedef long long int GLsizeiptr;
> > > #else
> > > -typedef long int GLintptr;
> > > -typedef long int GLsizeiptr;
> > > +typedef __ptrdiff_t GLintptr;
> > > +typedef __ptrdiff_t GLsizeiptr;
> > > #endif // _WIN64
> > > #endif // __gl2_h_
> > >
> > > --- ./third_party/khronos/GLES2/gl2.h.orig 2014-08-20
> > > 21:03:05.000000000 +0200
> > > +++ ./third_party/khronos/GLES2/gl2.h 2014-08-25 23:48:36.000000000
> +0200
> > > @@ -38,6 +38,7 @@
> > >
> > > #include <GLES2/gl2chromium.h>
> > > #include <GLES2/gl2platform.h>
> > > +#include <cstddef>
> > >
> > > /* Generated on date 20131202 */
> > >
> > > @@ -67,8 +68,8 @@
> > > typedef unsigned int GLuint;
> > > typedef char GLchar;
> > > typedef khronos_float_t GLfloat;
> > > -typedef khronos_ssize_t GLsizeiptr;
> > > -typedef khronos_intptr_t GLintptr;
> > > +typedef ptrdiff_t GLintptr;
> > > +typedef ptrdiff_t GLsizeiptr;
> > > typedef unsigned int GLbitfield;
> > > typedef int GLint;
> > > typedef unsigned char GLboolean;
> > >
> > > --- ./third_party/mesa/src/include/GLES2/gl2.h.orig 2014-08-20
> > > 21:03:54.000000000 +0200
> > > +++ ./third_party/mesa/src/include/GLES2/gl2.h 2014-08-25
> > > 23:50:18.000000000 +0200
> > > @@ -4,6 +4,7 @@
> > > /* $Revision: 10602 $ on $Date:: 2010-03-04 22:35:34 -0800 #$ */
> > >
> > > #include <GLES2/gl2platform.h>
> > > +#include <cstddef>
> > >
> > > #ifdef __cplusplus
> > > extern "C" {
> > > @@ -35,8 +36,8 @@
> > > typedef khronos_int32_t GLfixed;
> > >
> > > /* GL types for handling large vertex buffer objects */
> > > -typedef khronos_intptr_t GLintptr;
> > > -typedef khronos_ssize_t GLsizeiptr;
> > > +typedef ptrdiff_t GLintptr;
> > > +typedef ptrdiff_t GLsizeiptr;
> > >
> > > /* OpenGL ES core versions */
> > > #define GL_ES_VERSION_2_0 1
> > >
> > >
> > >
>
> Regards,
> --
> Carlos Jacobo Puga Medina <cpm at fbsd.es>
> _______________________________________________
> freebsd-chromium at freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-chromium
> To unsubscribe, send any mail to "freebsd-chromium-unsubscribe at freebsd.org
> "
>
More information about the freebsd-chromium
mailing list