Re: [eigen] 3.0-RC1 released |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/eigen Archives
]
- To: eigen@xxxxxxxxxxxxxxxxxxx
- Subject: Re: [eigen] 3.0-RC1 released
- From: Rhys Ulerich <rhys.ulerich@xxxxxxxxx>
- Date: Sat, 19 Mar 2011 11:58:52 -0500
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:in-reply-to:references:from:date :message-id:subject:to:content-type:content-transfer-encoding; bh=n5v8Q0CMFPEVe4ef3ksO0ZBD6BI5oRs4GNVhjF1mX7s=; b=to1vPEaCpjE8PuK6my6rjTlINQqviw0JvqqaPaKhioJnCs5woTwfkrF/lBSSErarKI Hu1e55PTW/xsF7N4g3eV+1SpbtcA5cfMNFfUfosAicHTWYMsR5i7zDNVfWe0pRhR2cVk KGhaXf1XdKA54q6c67xTLSpZYNm/nB+jV6pJA=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :content-type:content-transfer-encoding; b=HYlD7sk7plKHPKDWVN0ehaJMS/JhpUgnT4r3fd9Ub1aNZwQGwxZp0fxLkIW03tV52d TSiLj5UFxKUW2VjvWtNPJEnyZ/0ieIwD38s7Dq7NP5EEpJ3gjECt4ijqtoShKp+/ZmbQ bs+EjcyyRMz9GqSkyHFAvGBtGPA5vzfdDgTz4=
It is. Thanks Gael.
- Rhys
On Sat, Mar 19, 2011 at 9:01 AM, Gael Guennebaud
<gael.guennebaud@xxxxxxxxx> wrote:
> that stupid GLEW issue should be fixed now.
>
> gael
>
> On Mon, Mar 14, 2011 at 10:06 PM, Rhys Ulerich <rhys.ulerich@xxxxxxxxx> wrote:
>>> http://bitbucket.org/eigen/eigen/get/3.0-rc1.tar.bz2
>>>
>>> Please give this a last round of testing.
>>
>> I probably should have asked earlier-- is it considered okay that
>> unsupported/test/CMakeFiles/openglsupport.dir/openglsupport.cpp.o breaks the
>> 'make check' target? All of the beta releases have consistently tripped
>> /workspace/rhys/tmp/eigen-eigen-b6456624eae7/unsupported/test/openglsupport.cpp:
>> In function ‘void test_openglsupport()’:
>> /workspace/rhys/tmp/eigen-eigen-b6456624eae7/unsupported/test/openglsupport.cpp:323:8:
>> error: ‘GLEW_ARB_gpu_shader_fp64’ was not declared in this scope
>> on my system (GNU and Intel alike) and I just kept assuming it would be fixed
>> prior to 3.0.
>>
>> I do get a
>> -- Found Glew: /usr/lib/libGLEW.so
>> at cmake configuration time and appear to have /usr/include/GL/glew.h on
>> my system.
>>
>> Any possibility the #ifdef GL_ARB_gpu_shader_fp64/#endif lines could be moved
>> outside the if(GLEW_ARB_gpu_shader_fp64) test? I'm unfamiliar with GL and
>> don't know if that would be verboten, but it would solve the 'make check' break
>> on my system. Something like
>>
>> #ifdef GL_ARB_gpu_shader_fp64
>> if(GLEW_ARB_gpu_shader_fp64)
>> {
>> // ...
>> }
>> else
>> #endif
>> std::cerr << "Warning: GLEW_ARB_gpu_shader_fp64 was not tested\n";
>>
>> instead of the currently problematic
>>
>> if(GLEW_ARB_gpu_shader_fp64)
>> {
>> #ifdef GL_ARB_gpu_shader_fp64
>> // ...
>> #endif
>> }
>> else
>> std::cerr << "Warning: GLEW_ARB_gpu_shader_fp64 was not tested\n";
>>
>> - Rhys
>>
>>
>>
>
>
>