You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When MAKEMOS.BAT is modified to pass the -u option to make so that everything is rebuilt (as discussed in issue #9), the build fails to compile compfile.c because stdio.h can't be found. Once that issue is resolved, a library cannot be found.
The solution is to set the following environment variables to refer to the corresponding directories from the Git repository:
INCLUDE: INCLUDE
LIB: SOURCES/src/libs
BIN/NEW-VARS.BAT sets these variables (amongst others):
set LIB=C:\LIB;%LIB%
set INCLUDE=C:\INCLUDE;%INCLUDE%
so one solution is to arrange for the above Git directories to be in those locations, then run that batch file.
For what it's worth, what I have actually done is to modify MAKEMOS.BAT to handle everything being under E:\, and added these lines to that batch file:
set INCLUDE=E:\INCLUDE
set LIB=E:\LIBS
The text was updated successfully, but these errors were encountered:
Set the locations of the include and libraries used by CL and LINK here
so that we don't need to specify a DOS drive or absolute path..
Note: It seems that the MS toolchain libraries are contained in the same
libs directory that holds the TSL supplied rsa library.
When
MAKEMOS.BAT
is modified to pass the-u
option tomake
so that everything is rebuilt (as discussed in issue #9), the build fails to compilecompfile.c
becausestdio.h
can't be found. Once that issue is resolved, a library cannot be found.The solution is to set the following environment variables to refer to the corresponding directories from the Git repository:
INCLUDE
:INCLUDE
LIB
:SOURCES/src/libs
BIN/NEW-VARS.BAT
sets these variables (amongst others):so one solution is to arrange for the above Git directories to be in those locations, then run that batch file.
For what it's worth, what I have actually done is to modify
MAKEMOS.BAT
to handle everything being underE:\
, and added these lines to that batch file:The text was updated successfully, but these errors were encountered: