!!! Important change in build system, it requires update of your setvars script copy !!! #125
Replies: 14 comments
-
Thanks, Jiri. I successfully built the system on my Windows 7, 64 bit system using 64 bit Open Watcom as my build compiler. BTW, I added |
Beta Was this translation helpful? Give feedback.
-
This occurs if you have installed 64bit OW windows executables built But, if you have installed a 32bit OW, such as OW1.9 then binnt64 does So, in Peters case he could comment out OWTOOLS to undefine it and run I suggest that there be a OWTOOLS=WATCOM64 OWTOOLS=WATCOM will set the compiler vars for the user (as it does now) OWTOOLS=WATCOM64 will set the compiler vars for the user OWTOOLS not defined will require the user to set the compiler vars In setvars.bat usewatcom: if not '%OWTOOLS%' == 'WATCOM64' goto docs_setup :docs_setup Remember, 64 bit OW can not (yet) build 64 bit OW, must currently use Peter C. Chapin wrote:
|
Beta Was this translation helpful? Give feedback.
-
I externalize setup of OW used for building process. |
Beta Was this translation helpful? Give feedback.
-
The concept of custom compiler setup matches my custom copy of setvars.bat REM Set this entry to identify your toolchain used by build process REM after the above lines I add the following two Question |
Beta Was this translation helpful? Give feedback.
-
It is not supported. |
Beta Was this translation helpful? Give feedback.
-
Your latest setvars.bat is simpler for custom installations but the doco will need to be updated that the compiler variables need to be set before running setvars.bat, maybe suggesting my custom edit shown in earlier post to set compiler vars from within custom setvars.bat |
Beta Was this translation helpful? Give feedback.
-
Jiri, now that 32bit and 64bit builds fully build (exe,doc and zip) it may a good time to update the binary executables on Sourceforge. |
Beta Was this translation helpful? Give feedback.
-
I did tweak BUILD.md a little to give readers a heads up about needing to set up the compiler environment. The presentation could probably be better than it is. |
Beta Was this translation helpful? Give feedback.
-
Peter, Thanks. |
Beta Was this translation helpful? Give feedback.
-
I've been trying to build the latest git version of the openwatcom 64 bit src tree, and I can build most Thanks! |
Beta Was this translation helpful? Give feedback.
-
This file is created dynamicaly by bide2make utlity from *.tgt file |
Beta Was this translation helpful? Give feedback.
-
I checked the build log, there is no mention of bide2make being ran at all. |
Beta Was this translation helpful? Give feedback.
-
Well, this is wonderful, I tried to do another build and now it won't even do the very first thing Thanks! |
Beta Was this translation helpful? Give feedback.
-
Update, I decided to check the base system paths even though I wasen't aware of changing |
Beta Was this translation helpful? Give feedback.
-
I changed build system by introducing new environment variable OWTOOLS.
This variable must be setup to one of following values:
WATCOM - use Open Watcom for bootstrap build
VISUALC - use Microsoft Visual C++ for bootstrap build
GCC - use GNU gcc compiler for bootstrap buil
CLANG - use Clang compiler for bootstrap build
INTEL - use Intel C++ compiler for bootstrap build
if it is not defined or use unsupprted value then default to WATCOM
OWUSENATIVETOOLS is now useless therefore it is removed.
Beta Was this translation helpful? Give feedback.
All reactions