- cd Documents
- git clone https://github.com/thunder422/ibcp
- cd ibcp (shows master is the current branch)
- git checkout branch0.6 (now shows branch0.6 is the current branch)
- cd ..
- mkdir ibcp-build
- cd ibcp-build
- cmake -G "MSYS Makefiles" -DCMAKE_MAKE_PROGRAM=mingw32-make ../ibcp
- mingw32-make
- regtest (runs the Linux regression test script)
Here are the steps for using the Command Prompt:
- cd Documents
- git clone https://github.com/thunder422/ibcp
- cd ibcp
- git checkout branch0.6
- cd ..
- md ibcp-build
- cd ibcp-build
- cmake -G "MinGW Makefiles" ../ibcp (produces errors - see below)
- cmake -G "MinGW Makefiles" ../ibcp
- mingw32-make
- regtest (runs Windows regression test batch file)
In step 11, the batch file will run all the tests and then it will compare the first set of results (parser tests). If the tests are successful it will say OK for each file. Answer N for comparing more files. The next set of results will be compared. Answer N after each comparison (otherwise it will prompt for more files to compare).
In step 8 for Git Bash and steps 8 and 9 for the Command Prompt, add -DCMAKE_BUILD_TYPE=Debug before the source directory to do a debug build.
No comments:
Post a Comment
All comments and feedback welcomed, whether positive or negative.
(Anonymous comments are allowed, but comments with URL links or unrelated comments will be removed.)