博客转载自:https://medium.com/@fzubair/carnd-term2-gcc-setup-on-windows-287e1fd36845

2018/6/2 — mingw32/cmake doesn’t work in the latest msys2. Have added step 7 to use “cmake” installed from cmake.org instead

  1. Download latest msys2 installer from https://www.msys2.org/ (orjust download this version http://repo.msys2.org/distrib/x86_64/msys2-x86_64-20180531.exe)
  2. Run the installer, keep c:\msys64 as default, when it finishes, choose “Run MSYS now”
  3. When the command prompt window opens type:

    pacman -Syu  //更新系统
    

    A message will appear to close the terminal window. Close the window. (it might take long to close, and you might even have to kill it)

    Note: Depending on the version you download from msys2, it might say everything is up to date, just continue.

    3. Change home location by opening c:\msys64\etc\nsswitch.conf in any editor and change db_home to:

    db_home: windows desc //将home定位到windows的home,不修改则在/home/username

    4. Open MSYS2 MinGW 32bit and this time write:

 pacman -Su  //

  

Note: Depending on the version you downloaded, it might say everything is up to date, so you can just continue. 可能下载速度很慢,可以通过更换源解决,方案参考 MSYS2 更换国内源

5.Download gcc-5.4

http://repo.msys2.org/mingw/i686/mingw-w64-i686-gcc-libs-5.4.0-1-any.pkg.tar.xz

http://repo.msys2.org/mingw/i686/mingw-w64-i686-gcc-libgfortran-5.4.0-1-any.pkg.tar.xz

http://repo.msys2.org/mingw/i686/mingw-w64-i686-gcc-5.4.0-1-any.pkg.tar.xz

http://repo.msys2.org/mingw/i686/mingw-w64-i686-gcc-fortran-5.4.0-1-any.pkg.tar.xz

http://repo.msys2.org/mingw/i686/mingw-w64-i686-gdb-7.11.1-4-any.pkg.tar.xz

或者使用以命令安装Toolchain

pacman -Syu mingw-w64-i686-toolchain

6.Install gcc / other packages:

$ cd ~/Downloads
$ pacman -U mingw-w64-i686-gcc-libgfortran-5.4.0-1-any.pkg.tar.xz mingw-w64-i686-gcc-libs-5.4.0-1-any.pkg.tar.xz mingw-w64-i686-gcc-5.4.0-1-any.pkg.tar.xz
mingw-w64-i686-gdb-7.11.1-4-any.pkg.tar.xz mingw-w64-i686-gcc-fortran-5.4.0-1-any.pkg.tar.xz
$ pacman -S mingw-w64-i686-make git make tar unzip patch automake autoconf mingw-w64-i686-python2 mingw-w64-i686-python2-matplotlib mingw-w64-i686-python2-pip

Confirm gcc is working: 

g++ --version

7. Make sure you have cmake installed. If not, install cmake from https://cmake.org (or just install this version https://cmake.org/files/v3.11/cmake-3.11.3-win64-x64.msi)

Projects

Build uWebSockets for Mingw.

git clone https://github.com/drganjoo/uWebSockets.git
cd uWebSockets
git checkout carnd-mingw
mkdir build
cd build
"C:\Program Files\CMake\bin\cmake" -G "MSYS Makefiles" ..
make
make install

  1. ExtendedEKF
git clone  https://github.com/udacity/CarND-Extended-Kalman-Filter-Project.git

Download the changed CMakeLists.txt or you can make the following changes to CMakeLists.txt file yourself:

Towards the bottom of the file add:

....
target_link_libraries(ExtendedKF z ssl uv uWS)
if (MINGW)
target_link_libraries(ExtendedKF ws2_32)
endif()

Changed main.cpp to make it work on Windows:

Line #175, currently says:

if (h.listen(port))

Change this to (this change will work on Linux / MacOS as well, so you can submit your code with this change in it):

if (h.listen("127.0.0.1", port))

Build project:

mkdir build
cd build
"C:\Program Files\CMake\bin\cmake" -G "MSYS Makefiles" ..
make

  

If you want to run it, you need to provide return values in tools.cpp otherwise the program will crash. Open src/tools.cpp and write the following for time being:

VectorXd Tools::CalculateRMSE(const vector<VectorXd> &estimations,
const vector<VectorXd> &ground_truth) {
/**
TODO:
* Calculate the RMSE here.
*/
VectorXd temp(4);
temp << 1, 2, 3, 4;
return temp;
}
MatrixXd Tools::CalculateJacobian(const VectorXd& x_state) {
/**
TODO:
* Calculate a Jacobian here.
*/
MatrixXd temp(3,4);
return temp;
}

Run the simulator and you should be able to see the 1,2,3,4 being sent to the simulator:

  2.Unscented Kalman Filter Project

git clone https://github.com/udacity/CarND-Unscented-Kalman-Filter-Project.git

Download the changed CMakeLists.txt or you can make the following changes to CMakeLists.txt file yourself:

Towards the bottom of the file add:

....
target_link_libraries(UnscentedKF z ssl uv uWS)
if (MINGW)
target_link_libraries(UnscentedKF ws2_32)
endif()

Changed main.cpp to make it work on Windows:

Line #178, currently says:

if (h.listen(port))

Change this to (this works on Linux / MacOS as well):

if (h.listen(“127.0.0.1”, port))

Build project:

mkdir build
cd build
cmake -G "MSYS Makefiles" ..
make

3. CarND-MPC-Quizes:

Open MinGW32 Shell (Start->MSYS MinGW32)

$ git clone https://github.com/udacity/CarND-MPC-Quizzes.git
$ cd CarND-MPC-Quizzes
$ wget https://www.coin-or.org/download/source/Ipopt/Ipopt-3.12.8.zip
$ unzip Ipopt-3.12.8.zip

Install ipopt from the shell:

$ cd Ipopt-3.12.8/
$ ../install_ipopt.sh .
$ cd ..

Install cppad:

$ wget https://www.coin-or.org/download/source/CppAD/cppad-20180000.0.gpl.tgz
$ tar xvzf cppad-20180000.0.gpl.tgz
$ cd cppad-20180000.0
$ mkdir build && cd build
$ "C:\Program Files\CMake\bin\cmake" -G "MSYS Makefiles" -D cppad_prefix=/c/msys64/usr/local ..
$ make check

One test will fail, but you can ignore it:

$ make install
$ cd ../..

3a) CarND-MPC-Quizzes/global_kinematic_model

Add on top of main.cpp:

// In this quiz you'll implement the global kinematic model.
#define _USE_MATH_DEFINES
#include <math.h>
....

To build:

make build
cd build
"C:\Program Files\CMake\bin\cmake" -G "MSYS Makefiles" ..
make

3b) CarND-MPC-Quizes/mpc_to_line

Change CMakeLists.txt (or Download)

if(MINGW)
set(CMAKE_CXX_USE_RESPONSE_FILE_FOR_INCLUDES 0)
endif()
add_executable(mpc ${sources})
if(${CMAKE_SYSTEM_NAME} MATCHES "Linux")
target_link_libraries(mpc ipopt python2.7)
elseif (MINGW)
target_link_libraries(mpc ipopt coinasl coinblas coinasl coinmumps coinlapack gfortran ws2_32 python2.7)
else()
target_link_libraries(mpc ipopt python27 )
endif()

Build:

mkdir build
cd build
"C:\Program Files\CMake\bin\cmake" -G "MSYS Makefiles" ..
make
./mpc

If you get an error regarding python, set the following environment variables and then run mpc.exe again

$ export PYTHONPATH=/mingw32/bin:/mingw32/lib/python2.7/site-packages:/mingw32/lib/python2.7/lib-dynload:/mingw32/lib/python2.7
$ export PYTHONHOME=/mingw32/bin

3c) CarND-MPC-Quizes/polyfit

mkdir build
cd build
"C:\Program Files\CMake\bin\cmake" -G "MSYS Makefiles" ..
make

4) CarND-MPC-Project

git clone https://github.com/udacity/CarND-MPC-Project.git

Towards the bottom, make following changes to CMakeLists.txt (or Download):

if(MINGW)
set(CMAKE_CXX_USE_RESPONSE_FILE_FOR_INCLUDES 0)
set(CMAKE_CXX_USE_RESPONSE_FILE_FOR_LIBRARIES 0)
endif()
target_link_libraries(mpc ipopt z ssl uv uWS)
if (MINGW)
target_link_libraries(mpc ipopt coinasl coinblas coinasl coinmumps coinlapack gfortran ws2_32)
endif()

Changed main.cpp to make it work on Windows:

Line #1: Add the following:

#define _USE_MATH_DEFINES
#include <math>
...

Line #179, currently says:

if (h.listen(port))

Change this to (this works on Linux / MacOS as well):

if (h.listen(“127.0.0.1”, port))

Build project:

mkdir build
cd build
"C:\Program Files\CMake\bin\cmake" -G "MSYS Makefiles" ..
make

CLion Setup

Configure->Settings, under Build, Execution, Deployment set MinGW folder:

You can open project using ‘Import Project from Sources’ and choosing the root folder of the project e.g. ‘CarND-Extended-Kalman-Filter-Project’. Just choose Open Project instead of ‘Overwrite CMakeLists.txt’

If you want to debug, then you can either:

  1. Set the working directory to c:/msys64/mingw32/bin. In CLion IDE, choose Run →Edit Configuration
  2. OR you can add c:/msys64/ming32/bin to System Path using environment variables

MSYS2 编译环境配置的更多相关文章

  1. linux内核编译环境配置

    linux内核编译环境配置 如果不是编译内核,只需要安装与内核相匹配的kernel-devel开发包即可.即是/lib/modules/`uname -r`/build -> /usr/src/ ...

  2. Syslinux编译环境配置简要步骤

    由于毕业设计要做一个加密U盘的LINUX,需要修改一sysylinux引导程序,在网上很少有关于syslinux编译环境配置的文章,在此简要总结一下,发出来共享. 需要的软件: 1.  vmware ...

  3. Android编译环境配置

    Android编译环境配置 网上关于Android编译环境配置的整理资料有不少,经整理亲测后,希望能给需要的亲们提供帮助. 主要分为四步: 1.安装JDK(Java Standard Edition ...

  4. mac OS(OS X)的OI编译环境配置指南

    编译环境:gdb+Atom 如何安装gdb: http://logic0.blog.163.com/blog/static/1889281462014183271283/   Atom下载地址: ht ...

  5. Android编译环境配置(Ubuntu 14.04)

    常识:编译Android源代码需要在Linux系统环境下进行... 在Linux中,开发Android环境包括以下需求:Git.repo.JDK(现在一般使用OpenJDK)等:其中,Git用于下载源 ...

  6. Berkeley DB (VC6.0 编译环境配置)

    操作系统:winxp VC环境:VC6.0 必需文件:Berkeley DB安装文件(db-.msi) 下载地址:http://www.oracle.com/technology/software/p ...

  7. OpenCL编译环境配置(VS+Nvidia)

    英伟达的显卡首先要下载安装CUDA开发包,可以参考这里的步骤:   VS2015编译环境下CUDA安装配置 安装好CUDA之后,OpenCL的配置就已经完成了80%了,剩下的工作就是把OpenCL的路 ...

  8. Android代码编译环境配置 “Gerrit和Git环境配置”

    Gerrit和Git环境配置可以参考<git&gerrit操作指导> 步骤1. 先在Gerrit中创建新的账户: 步骤2. 在新的客户端上生成密钥(可以使用的是生成的公钥): 步骤 ...

  9. 关于Sublime text 的PHP编译环境配置的问题

    前一段时间终于装上了传说中的代码编辑神器====>Sublime Text ,一打开便爱不释手,于是在网上找PHP的配置方案和插件,所有的一切都搞定了,可就是编译的时候没有显示,也没有提示,熬了 ...

随机推荐

  1. pandas之数据处理

    首先,数据加载 pandas提供了一些用于将表格型数据读取为DataFrame对象的函数,期中read_csv和read_table这两个使用最多. 1.删除重复元素 使用duplicated()函数 ...

  2. 《大象 Thinking in UML》读书笔记:软件开发——从现实世界到对象世界

    参考:Process-oriented vs. Object-oriented 前言 软件行业在采用OO的思想后,从一开始只对编码使用OO,到现在“分析-设计-编码”全部环节使用OO,形成了OOA.O ...

  3. linux设备驱动程序-i2c(1):i2c总线的添加与实现

    linux设备驱动程序-i2c(1):i2c总线的添加与实现 (基于4.14内核版本) 在上一章节linux设备驱动程序-i2c(0)-i2c设备驱动源码实现中,我们演示了i2c设备驱动程序的源码实现 ...

  4. k8s包管理工具helm - 介绍和安装

    目录 1.Kubernetes 应用部署的挑战 2.Helm 是什么 3.Helm 组件及相关术语 4.Helm 工作原理 5.Helm 安装 5.1 客户端安装 5.2 安装服务端 Tiller 5 ...

  5. linux卸载mysql误删mysql.pm

    操作步骤如下 linux卸载mysql:yum remove mysql 查找mysql所有的文件并删除: 查找:find / -name mysql 删除:rm -rf xxx 误操作删除mysql ...

  6. SQL模糊查询的四种匹配模式

    执行数据库查询时,有完整查询和模糊查询之分,一般模糊语句如下: SELECT 字段 FROM 表 WHERE 某字段 Like 条件 一.四种匹配模式 关于条件,SQL提供了四种匹配模式: 1.% 表 ...

  7. poj3522Slim Span(暴力+Kruskal)

    思路: 最小生成树是瓶颈生成树,瓶颈生成树满足最大边最小. 数据量较小,所以只需要通过Kruskal,将边按权值从小到大排序,枚举最小边求最小生成树,时间复杂度为O( nm(logm) ) #incl ...

  8. Python使用pip安装matplotlib模块

    matplotlib是python中强大的画图模块. 首先确保已经安装python,然后用pip来安装matplotlib模块. 进入到cmd窗口下,建议执行python -m pip install ...

  9. 项目Alpha冲刺(10/10)

    1.项目燃尽图 2.今日进度描述 项目进展 完成测试 问题困难 测试用例的设计 心得体会 目标快要完成,队员士气较高 3.会议照片 4.各成员情况 221600106 今日进展 根据测试结果修改代码 ...

  10. POJ - 3728:The merchant (Tarjan 带权并查集)

    题意:给定一个N个节点的树,1<=N<=50000 每个节点都有一个权值,代表商品在这个节点的价格.商人从某个节点a移动到节点b,且只能购买并出售一次商品,问最多可以产生多大的利润. 思路 ...