Situation
试图在编译Makefile之后进行清理。
Error
这是我在尝试进行一个简单的清理操作时经常收到的错误。
错误:
命令:
使linux
g++ Main.o CHARACTER.o ATTRIBUTES.o -o bin/release/Player.sh find *.o -type f -delete
g++: error: find: No such file or directory
g++: error: f: No such file or directory
g++: error: unrecognized command line opti
我正在尝试在Ubuntu 16.04.4 LTS xenial上引导cmake 3.11.3。
我已经将我的gnu g++编译器升级如下:
> $ g++ --version
g++ (Ubuntu 8.1.0-5ubuntu1~16.04) 8.1.0 Copyright (C) 2018 Free
Software Foundation, Inc. This is free software; see the source for
copying conditions. There is NO warranty; not even for MERCHANTABILITY
or
我正尝试在C++中使用eclipse IDE在linux上创建一个共享库。但是我得到了这个错误,我找不到问题:
23:42:12 **** Incremental Build of configuration Release for project GE ****
make all
Building file: ../GE/Application.cpp
Invoking: GCC C++ Compiler
std=c++1y -DGE_PLATFORM_LINUX -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"GE/Application
我有个简单的问题。
这是我的制作文件
#############################################################################
#
# Makefile for building the Long Range Navigator program
#
#############################################################################
PC = true
#PC = false
PWD := $(shell pwd)
#GUMSTIX_BU
我分析应用程序的标准Linux方法是:
1) compile with g++ -pg
2) run prog
3) gprof
显然,gprof是MacOSX 10.5上的broek,而我应该使用Shark。我发现的所有aby Shark教程都涉及XCode (而我的构建是使用Makefiels和g++完成的)。
有人可以在用g++构建的应用程序上发布使用shark的逐步说明吗?可以这样说:
int main() { while(1); }
g++ blah.cpp -o blah; do I need to give it more command line arguments?
ho
我使用下面这个()链接在beablebone black上进行交叉编译。但在使用此链接时,我在修改qmake.conf文件后遇到以下错误
1)修改qmake.conf详情:
enter code here
# qmake configuration for building with arm-linux-g++
#
include(../../common/linux.conf)
include(../../common/gcc-base-unix.conf)
include(../../common/g`enter code here`++-unix.conf)
include(../..
当尝试在Linux上构建CMake时,我收到了一个错误。我无法到达make步骤。我在网上看了看,但仍然不能真正解决这个问题。
这两个我都试过了,但都不管用:
$ ./configure --prefix=/opt/cmake
$ ./bootstrap
他们的结果是:
CMake Error at CmakeLists.txt:107 (message):
The C++ compiler does not support C++11 (e.g. std::unique_ptr).
-- Configuring incomplete, errors occurred
-----------
我有一个想要用g++编译的CMake项目。该项目在Linux上编译和运行。现在,我正在尝试让它在Windows上运行。
出于这个原因,我安装了MinGW并将其添加到路径中,并且我正在使用Git Bash。为了强制CMake使用g++,我添加了以下环境变量:
CC = C:\MinGW\bin\gcc
CXX = C:\MinGW\bin\g++
但当我运行CMake时,它没有检测到任何编译器,并告诉我:
-- The C compiler identification is unkown
-- The CXX compiler identification is unkown
我目前在CS班上,我们使用C++,我在我的笔记本上运行Linux。所以问题是我想我没有最新版本的C++。我已经在线阅读了几个获取版本的命令,这就是我的结果。另外,我的Linux版本是16.04,我正在我的终端上编译
tom@TBT-XPS-13-9360:~/Documents/Subjects/CS/OOP$ g++ --version
g++ (Ubuntu 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609
Copyright (C) 2015 Free Software Foundation, Inc.
This is free software; see t
谁能告诉我这是什么意思?
/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/../../../crt1.o: In function `_start':
(.text+0x18): undefined reference to `main'
collect2: ld returned 1 exit status
make: *** [program] Error 1
我的make文件如下所示:
program : main.o render.o screenwriter.o
g++ -o main.o render.o s