zoukankan      html  css  js  c++  java
  • Compile my helloworld cpp program on Ubuntu linux

    Usually, I work on windows platform, use Visual Studio and click the build button->compile and link done! Mostly, I modify the compile&link options, it's fast and stupid. My job is SDET, both the developer and tester, I want to learn more develop skill to support my work, these days, corp want to do something on Android platform, so I need some linux program experience.

    First, I install a VM ware and ubuntu as  a virtual machine.

    And use sudo apt-get install g++-4.4 command in terminal.

    Command: g++

    Command: sudo apt-get install g++

    Command: sudo apt-get install pentium-builder

    After these happy installings, I use gedit edit my helloworld.cpp

    #include <iostream>

    using namespace std;

    int main()

    {

        cout<<"Hello World!"<<endl;

        return 0;

    }

    And use command "g++ HelloWorld.cpp -o HelloWorld" in terminal.

    Then it's the greatest time! command: .\HelloWorld

    The program print Hello World! in terminal command line.

    It's OK! I'm becoming a linux cpp programmer~!

    Then I want to try makefile:

    New a file named "makefile", and edit:

    hello: HelloWorld.cpp

        g++ HelloWorld.cpp -o hello

    "hello" here means a target, if it's old or not exist, it will be made. The second line means the compile and link command.

    Ok, I can use makefile to compile my cpp file now!

    Good luck!

  • 相关阅读:
    【转】高级爬虫
    python-基于遗传算法的多三角形拟合图像实例
    python-文件处理
    python-函数式编程与内置函数
    Python-变量、函数及递归
    Python-字符串的拼接与函数
    Python-集合
    Python-列表、元组、字典
    Python-字符串2
    Python-字符串
  • 原文地址:https://www.cnblogs.com/yakashop/p/1973329.html
Copyright © 2011-2022 走看看