Kg到磅转换器构建错误(CLion)

时间:2015-05-27 12:05:00

标签: c++ mingw clion

我刚开始学习C ++编程语言,请阅读“C ++ Primer Plus 5th add”和#34;但是我遇到了一个问题。这本书刚开始详细介绍功能,功能原型,功能标题等。我决定尝试制作KG - >磅转换器作为练习,但我的问题是,当我尝试构建它(我使用CLion)时,我得到一个构建错误。

代码:

#include <cmath> // [EDIT] Removed this line as it isnt being used
#include <iostream>
using namespace std;

double pounds_converter(double);
int main()
{
    cout << "Welcome to the kg to pounds convertor" << endl;
    cout << "Enter the desired kg's to change to pounds: ";
    double my_kg;
    cin >> my_kg;
    double pounds = pounds_converter(my_kg);
    cout << my_kg << " in pounds is: " << pounds << endl;
    cin.get();
    return 0;
}

double pounds_converter(double n)
{
    return 2.2046226218 * n;

}

首次构建错误:

"C:\Program Files (x86)\JetBrains\CLion 1.0.3\bin\cmake\bin\cmake.exe"
--build C:\Users\Admin\.clion10\system\cmake\generated\23677da2\23677da2\Release
--target newproject -- -j 8 Scanning dependencies of target newproject [100%] Building CXX object CMakeFiles/newproject.dir/main.cpp.obj In file included from c:\mingw\lib\gcc\mingw32\4.8.1\include\c++\cmath:44:0,
                 from C:\Users\Admin\ClionProjects\newproject\main.cpp:1: c:\mingw\include\math.h: In function 'float hypotf(float, float)': c:\mingw\include\math.h:635:30: error: '_hypot' was not declared in this scope  { return (float)(_hypot (x, y)); }
                              ^ mingw32-make.exe[3]: *** [CMakeFiles/newproject.dir/main.cpp.obj] Error 1 mingw32-make.exe[2]:
*** [CMakeFiles/newproject.dir/all] Error 2 mingw32-make.exe[1]: *** [CMakeFiles/newproject.dir/rule] Error 2 mingw32-make.exe: *** [newproject] Error 2 CMakeFiles\newproject.dir\build.make:53: recipe for target 'CMakeFiles/newproject.dir/main.cpp.obj' failed CMakeFiles\Makefile2:59: recipe for target 'CMakeFiles/newproject.dir/all' failed CMakeFiles\Makefile2:71: recipe for target 'CMakeFiles/newproject.dir/rule' failed Makefile:108: recipe for target 'newproject' failed

删除了#include cmath行,因为它不需要也没有在我的程序中使用,我尝试再次构建它但收到了一个不同的错误:

"C:\Program Files (x86)\JetBrains\CLion 1.0.3\bin\cmake\bin\cmake.exe" --build C:\Users\Admin\.clion10\system\cmake\generated\23677da2\23677da2\Release --target newproject -- -j 8
Linking CXX executable newproject.exe
c:/mingw/bin/../lib/gcc/mingw32/4.8.1/../../../../mingw32/bin/ld.exe: cannot open output file newproject.exe: Permission denied
collect2.exe: error: ld returned 1 exit status
CMakeFiles\newproject.dir\build.make:86: recipe for target 'newproject.exe' failed
CMakeFiles\Makefile2:59: recipe for target 'CMakeFiles/newproject.dir/all' failed
CMakeFiles\Makefile2:71: recipe for target 'CMakeFiles/newproject.dir/rule' failed
Makefile:108: recipe for target 'newproject' failed
mingw32-make.exe[3]: *** [newproject.exe] Error 1
mingw32-make.exe[2]: *** [CMakeFiles/newproject.dir/all] Error 2
mingw32-make.exe[1]: *** [CMakeFiles/newproject.dir/rule] Error 2
mingw32-make.exe: *** [newproject] Error 2

2 个答案:

答案 0 :(得分:0)

您的mingw设置存在某种问题,因为您的编译器无法找到 c:\ mingw \ include \ math.h 文件中使用的函数。但是,您实际上并不需要代码的标头。你可以删除 #include 这一行,它就可以编译并运行得很好。 (测试过)

如果您希望在其他程序中使用该标题,则需要解决您的mingw设置。

如果仍然出现错误,则很可能是由于您使用的其他标头造成的。重新安装MinGW,检查哪些文件应包含缺少的功能,并尝试在您的计算机上找到它们。

答案 1 :(得分:0)

您的第一个问题(<cmath>)与this question重复;你可以解决这里所描述的潜在问题,(但为什么你要在编程过程中尽早调用严格的ANSI符合性检查?)

第二个问题当然值得进一步调查;这可能是由于多种原因造成的,其中包括:

  • 您在尝试保存newproject.exe的目录中没有写入权限;似乎不太可能,但无论如何都要检查。

  • 此目录中已存在的newproject.exe标记为&#34;只读&#34;,或者由其他用户拥有,并且您尚未被授予写入权限。

  • 另一个进程在newproject.exe上有一个写锁定,阻止ld.exe获得写访问权。

  • newproject.exe已经存在为某个不是文件的实体(可能是目录)。

  • 其他一些原因,现在并没有想到。

这对我来说并不像MinGW安装问题,但我可以建议您通过从等式中删除CLion来消除这种可能性,并直接从命令行发出相应的构建命令;作为一名实习程序员,学习如何做到这一点总是好的,之前你可以用任何更高级别的构建系统来淹没水域。