You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@openoffice.apache.org by Patricia Shanahan <pa...@acm.org> on 2016/10/16 22:58:26 UTC

Failure to build on Windows 10

I tried to build AOO413 on Windows 10, and got a failure:

/MAP /OPT:NOREF -safeseh -nxcompat -dynamicbase -NODEFAULTLIB -RELEASE 
-DEBUG -INCREMENTAL:NO /SUBSYSTEM:CONSOLE /BASE:0x1b000000 
-out:../../../../../../../wntmsci12.pro/bin/create_sRGB_profile.exe 
-map:../../../../../../../wntmsci12.pro/misc/create_sRGB_profile.map 
../../../../../../../wntmsci12.pro/obj/create_sRGB_profile.obj 
../../../../../../../wntmsci12.pro/slb/proflib.lib 
../../../../../../../wntmsci12.pro/slb/icutil.lib msvcrt.lib msvcprt.lib 
kernel32.lib user32.lib oldnames.lib
linking 
../../../../../../../wntmsci12.pro/bin/create_sRGB_profile.exe.manifest ...
dmake:  Error code 31, while making 
'../../../../../../../wntmsci12.pro/bin/create_sRGB_profile.exe'
dmake:  '../../../../../../../wntmsci12.pro/bin/create_sRGB_profile.exe' 
removed.
dmake:  Error code 255, while making 
'Contrib/CmdLine/create_sRGB_profile/create_sRGB_profile.exe'
dmake:  Error code 255, while making 
'./wntmsci12.pro/misc/build/so_built_icc'

1 module(s):
	icc
need(s) to be rebuilt

Reason(s):

ERROR: error 65280 occurred while making 
/cygdrive/c/OpenOfficeDev/AOO413/main/icc


I've attached the complete log, zipped, and the script containing my 
configure parameters.

Re: Failure to build on Windows 10

Posted by Patricia Shanahan <pa...@acm.org>.
Thanks. I'll try that next.

On 10/18/2016 7:30 PM, John D'Orazio wrote:
> Not sure if this will fix but I myself found that avoiding paths with
> spaces can fix a number of errors. So I had the Windows SDK installed to a
> custom path where I substituted spaces with underscores. Then in my
> configure script I have:
>
> SDK_PATH="D:\Microsoft_SDKs\Windows\v7.0"
>
> As for the JDK home path, I was not able to customize the installation path
> but you can get the short form of the path using the cygpath tool. For
> example:
>
> cygpath -m -s "C:\Program Files (x86)\Java\jdk1.8.0_73"
>
> will give you "C:/PROGRA~2/Java/JDK18~1.0_7", so in my configure script I
> use:
>
> --with-jdk-home="C:/PROGRA~2/Java/JDK18~1.0_7"
>
> Same with NSIS, I installed it to a custom path with no spaces and in my
> configure script I have:
>
> --with-nsis-path="D:/NSIS"
>
> For dmake and epm I am using the sourceforge mirrors as suggested by Andrea
> Pescetti:
>
> --with-dmake-url="
> http://sourceforge.net/projects/oooextras.mirror/files/dmake-4.12.tar.bz2"
> --with-epm-url="
> https://sourceforge.net/projects/oooextras.mirror/files/epm-3.7.tar.gz"
>
> Maybe give this a try and see if it helps any?
>
> John R. D'Orazio
>
> On Mon, Oct 17, 2016 at 12:58 AM, Patricia Shanahan <pa...@acm.org> wrote:
>
>> I tried to build AOO413 on Windows 10, and got a failure:
>>
>> /MAP /OPT:NOREF -safeseh -nxcompat -dynamicbase -NODEFAULTLIB -RELEASE
>> -DEBUG -INCREMENTAL:NO /SUBSYSTEM:CONSOLE /BASE:0x1b000000
>> -out:../../../../../../../wntmsci12.pro/bin/create_sRGB_profile.exe
>> -map:../../../../../../../wntmsci12.pro/misc/create_sRGB_profile.map
>> ../../../../../../../wntmsci12.pro/obj/create_sRGB_profile.obj
>> ../../../../../../../wntmsci12.pro/slb/proflib.lib ../../../../../../../
>> wntmsci12.pro/slb/icutil.lib msvcrt.lib msvcprt.lib kernel32.lib
>> user32.lib oldnames.lib
>> linking ../../../../../../../wntmsci12.pro/bin/create_sRGB_profile.e
>> xe.manifest ...
>> dmake:  Error code 31, while making '../../../../../../../wntmsci1
>> 2.pro/bin/create_sRGB_profile.exe'
>> dmake:  '../../../../../../../wntmsci12.pro/bin/create_sRGB_profile.exe'
>> removed.
>> dmake:  Error code 255, while making 'Contrib/CmdLine/create_sRGB_p
>> rofile/create_sRGB_profile.exe'
>> dmake:  Error code 255, while making './wntmsci12.pro/misc/build/so
>> _built_icc'
>>
>> 1 module(s):
>>         icc
>> need(s) to be rebuilt
>>
>> Reason(s):
>>
>> ERROR: error 65280 occurred while making /cygdrive/c/OpenOfficeDev/AOO4
>> 13/main/icc
>>
>>
>> I've attached the complete log, zipped, and the script containing my
>> configure parameters.
>>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@openoffice.apache.org
For additional commands, e-mail: dev-help@openoffice.apache.org


Re: Failure to build on Windows 10

Posted by John D'Orazio <jo...@cappellaniauniroma3.org>.
Not sure if this will fix but I myself found that avoiding paths with
spaces can fix a number of errors. So I had the Windows SDK installed to a
custom path where I substituted spaces with underscores. Then in my
configure script I have:

SDK_PATH="D:\Microsoft_SDKs\Windows\v7.0"

As for the JDK home path, I was not able to customize the installation path
but you can get the short form of the path using the cygpath tool. For
example:

cygpath -m -s "C:\Program Files (x86)\Java\jdk1.8.0_73"

will give you "C:/PROGRA~2/Java/JDK18~1.0_7", so in my configure script I
use:

--with-jdk-home="C:/PROGRA~2/Java/JDK18~1.0_7"

Same with NSIS, I installed it to a custom path with no spaces and in my
configure script I have:

--with-nsis-path="D:/NSIS"

For dmake and epm I am using the sourceforge mirrors as suggested by Andrea
Pescetti:

--with-dmake-url="
http://sourceforge.net/projects/oooextras.mirror/files/dmake-4.12.tar.bz2"
--with-epm-url="
https://sourceforge.net/projects/oooextras.mirror/files/epm-3.7.tar.gz"

Maybe give this a try and see if it helps any?

John R. D'Orazio

On Mon, Oct 17, 2016 at 12:58 AM, Patricia Shanahan <pa...@acm.org> wrote:

> I tried to build AOO413 on Windows 10, and got a failure:
>
> /MAP /OPT:NOREF -safeseh -nxcompat -dynamicbase -NODEFAULTLIB -RELEASE
> -DEBUG -INCREMENTAL:NO /SUBSYSTEM:CONSOLE /BASE:0x1b000000
> -out:../../../../../../../wntmsci12.pro/bin/create_sRGB_profile.exe
> -map:../../../../../../../wntmsci12.pro/misc/create_sRGB_profile.map
> ../../../../../../../wntmsci12.pro/obj/create_sRGB_profile.obj
> ../../../../../../../wntmsci12.pro/slb/proflib.lib ../../../../../../../
> wntmsci12.pro/slb/icutil.lib msvcrt.lib msvcprt.lib kernel32.lib
> user32.lib oldnames.lib
> linking ../../../../../../../wntmsci12.pro/bin/create_sRGB_profile.e
> xe.manifest ...
> dmake:  Error code 31, while making '../../../../../../../wntmsci1
> 2.pro/bin/create_sRGB_profile.exe'
> dmake:  '../../../../../../../wntmsci12.pro/bin/create_sRGB_profile.exe'
> removed.
> dmake:  Error code 255, while making 'Contrib/CmdLine/create_sRGB_p
> rofile/create_sRGB_profile.exe'
> dmake:  Error code 255, while making './wntmsci12.pro/misc/build/so
> _built_icc'
>
> 1 module(s):
>         icc
> need(s) to be rebuilt
>
> Reason(s):
>
> ERROR: error 65280 occurred while making /cygdrive/c/OpenOfficeDev/AOO4
> 13/main/icc
>
>
> I've attached the complete log, zipped, and the script containing my
> configure parameters.
>