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
In the description of the IDE it is said that this IDE is a cross-platform IDE.
SASM (SimpleASM) - simple Open Source crossplatform IDE
And at the same time it is said that in order to build this IDE for Windows O.S. we need the make tool, which is a tool from Linux world and is in no way a cross-platform solution.
On Windows:
For building:
C++ compiler (e.g. gcc from MinGW)
make (e.g. mingw32-make from MinGW)
All this means that this IDE is not truly cross-platform.
One of the ways to make the IDE truly cross-platform is to use CMake tool instead of make because CMake tool is a 100% cross-platform solution.
The text was updated successfully, but these errors were encountered:
In the description of the IDE it is said that this IDE is a cross-platform IDE.
And at the same time it is said that in order to build this IDE for Windows O.S. we need the
make
tool, which is a tool from Linux world and is in no way a cross-platform solution.All this means that this IDE is not truly cross-platform.
One of the ways to make the IDE truly cross-platform is to use
CMake
tool instead ofmake
becauseCMake
tool is a 100% cross-platform solution.The text was updated successfully, but these errors were encountered: