Re: [eigen] unable to run cdash testsuite

[ Thread Index | Date Index | More lists.tuxfamily.org/eigen Archives ]


Both homer and lapnavab9 are my sites. I attached the batch file I use to invoke the test. In case you have trouble, just pass me a message.

By the way, there is a nasty bug in the Visual studio vcvars scripts. You need to fix it yourself in case you are on systems with paths containing brackets (e.g. "c:\Program Files (x86)").

Simply replace the following (I reconstructed the following from my mind)

@if not "%WindowsSdkDir%" == "" (
    set "PATH=%WindowsSdkDir%bin;%PATH%"
    set "INCLUDE=%WindowsSdkDir%include;%INCLUDE%"
    set "LIB=%WindowsSdkDir%lib;%LIB%"
)

with (this is what I am using ATM)

@if "%WindowsSdkDir%" == "" goto NoWinSdkDir

    set "PATH=%WindowsSdkDir%bin;%PATH%"
    set "INCLUDE=%WindowsSdkDir%include;%INCLUDE%"
    set "LIB=%WindowsSdkDir%lib;%LIB%"

:NoWinSdkDir

- Hauke

On Tue, Oct 6, 2009 at 10:06 PM, FMDSPAM <fmdspam@xxxxxxxxx> wrote:
FMDSPAM schrieb:

Hi,

I now tried once more with a freshly cloned "src" directory, again without success, sorry.
[edit] ... and empty (i.e no) build directory ...



again without success, sorry.
Frank




Attachment: eigen_cdash.bat_
Description: Binary data



Mail converted by MHonArc 2.6.19+ http://listengine.tuxfamily.org/