- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
正确设置 ec2 AMI 编译器的基本问题。
我已经编译了 gcc 5.3.0 并有以下输出
which g++
/home/mybin/bin/g++
g++ -v
Using built-in specs.
COLLECT_GCC=g++
COLLECT_LTO_WRAPPER=/home/mybin/libexec/gcc/x86_64-unknown-linux-gnu/5.3.0/lto-wrapper
Target: x86_64-unknown-linux-gnu
Configured with: /home/tmp/gcc-5.3.0/configure --prefix=/home/mybin/ --enable-languages=c,c++,fortran,go --disable-multilib
Thread model: posix
gcc version 5.3.0 (GCC)
gcc -v
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/home/mybin/libexec/gcc/x86_64-unknown-linux-gnu/5.3.0/lto-wrapper
Target: x86_64-unknown-linux-gnu
Configured with: /home/tmp/gcc-5.3.0/configure --prefix=/home/mybin/ --enable-languages=c,c++,fortran,go --disable-multilib
Thread model: posix
gcc version 5.3.0 (GCC)
但是当我尝试 hello world /home/myuser/test.c
时
#include <stdio.h>
int main() {
printf("Hello, world!\n");
return 0;
}
与gcc /home/myuser/test.c -o test
返回
/home/mybin/bin/ld: invalid option -- 'p'
Try `ld --help' or `ld --usage' for more information.
感谢@Ismael的指点,我也运行了gcc /home/myuser/test.c -o test
但找不到对 --p
的明显引用
gcc -v /home/_cbs/hhvm/test.c -o test
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/home/mybin/libexec/gcc/x86_64-unknown-linux-gnu/5.3.0/lto-wrapper
Target: x86_64-unknown-linux-gnu
Configured with: /home/tmp/gcc-5.3.0/configure --prefix=/home/mybin/ --enable-languages=c,c++,fortran,go --disable-multilib
Thread model: posix
gcc version 5.3.0 (GCC)
COLLECT_GCC_OPTIONS='-v' '-o' 'test' '-mtune=generic' '-march=x86-64'
/home/mybin/libexec/gcc/x86_64-unknown-linux-gnu/5.3.0/cc1 -quiet -v /home/_cbs/hhvm/test.c -quiet -dumpbase test.c -mtune=generic -march=x86-64 -auxbase test -version -o /home/tmp/ccRpAYPt.s
GNU C11 (GCC) version 5.3.0 (x86_64-unknown-linux-gnu)
compiled by GNU C version 5.3.0, GMP version 4.3.2, MPFR version 2.4.2, MPC version 0.8.1
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
ignoring nonexistent directory "/home/mybin/lib/gcc/x86_64-unknown-linux-gnu/5.3.0/../../../../x86_64-unknown-linux-gnu/include"
#include "..." search starts here:
#include <...> search starts here:
/home/mybin/lib/gcc/x86_64-unknown-linux-gnu/5.3.0/include
/usr/local/include
/home/mybin/include
/home/mybin/lib/gcc/x86_64-unknown-linux-gnu/5.3.0/include-fixed
/usr/include
End of search list.
GNU C11 (GCC) version 5.3.0 (x86_64-unknown-linux-gnu)
compiled by GNU C version 5.3.0, GMP version 4.3.2, MPFR version 2.4.2, MPC version 0.8.1
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
Compiler executable checksum: b4408eaf5114d6109f8b7d1dd0485d10
COLLECT_GCC_OPTIONS='-v' '-o' 'test' '-mtune=generic' '-march=x86-64'
as -v --64 -o /home/tmp/ccW4b2Db.o /home/tmp/ccRpAYPt.s
GNU assembler version 2.23.52.0.1 (x86_64-amazon-linux) using BFD version version 2.23.52.0.1-55.65.amzn1 20130226
COMPILER_PATH=/home/mybin/libexec/gcc/x86_64-unknown-linux-gnu/5.3.0/:/home/mybin/libexec/gcc/x86_64-unknown-linux-gnu/5.3.0/:/home/mybin/libexec/gcc/x86_64-unknown-linux-gnu/:/home/mybin/lib/gcc/x86_64-unknown-linux-gnu/5.3.0/:/home/mybin/lib/gcc/x86_64-unknown-linux-gnu/
LIBRARY_PATH=/home/mybin/lib/gcc/x86_64-unknown-linux-gnu/5.3.0/:/home/mybin/lib/gcc/x86_64-unknown-linux-gnu/5.3.0/../../../../lib64/:/lib/../lib64/:/usr/lib/../lib64/:/home/mybin/lib/gcc/x86_64-unknown-linux-gnu/5.3.0/../../../:/lib/:/usr/lib/
COLLECT_GCC_OPTIONS='-v' '-o' 'test' '-mtune=generic' '-march=x86-64'
/home/mybin/libexec/gcc/x86_64-unknown-linux-gnu/5.3.0/collect2 -plugin /home/mybin/libexec/gcc/x86_64-unknown-linux-gnu/5.3.0/liblto_plugin.so -plugin-opt=/home/mybin/libexec/gcc/x86_64-unknown-linux-gnu/5.3.0/lto-wrapper -plugin-opt=-fresolution=/home/tmp/ccQFq8sT.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --eh-frame-hdr -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -o test /usr/lib/../lib64/crt1.o /usr/lib/../lib64/crti.o /home/mybin/lib/gcc/x86_64-unknown-linux-gnu/5.3.0/crtbegin.o -L/home/mybin/lib/gcc/x86_64-unknown-linux-gnu/5.3.0 -L/home/mybin/lib/gcc/x86_64-unknown-linux-gnu/5.3.0/../../../../lib64 -L/lib/../lib64 -L/usr/lib/../lib64 -L/home/mybin/lib/gcc/x86_64-unknown-linux-gnu/5.3.0/../../.. /home/tmp/ccW4b2Db.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /home/mybin/lib/gcc/x86_64-unknown-linux-gnu/5.3.0/crtend.o /usr/lib/../lib64/crtn.o
/home/mybin/bin/ld: invalid option -- 'p'
Try `ld --help' or `ld --usage' for more information.
collect2: error: ld returned 64 exit status
有什么指示可以指出我的配置有什么问题吗?
感谢艺术。
最佳答案
我认为发生此错误是因为外部源错误,而不是内部源错误。
根据我的经验,使用 3ways 来修复。
方法一。重新安装 Visual Studio
方式2。1.复制源。2.删除当前项目。3.创建新项目并粘贴该源代码。
方式3。在 macOS 中使用 xcode。
关于c++ - hello world 在 gcc 5.3.0/bin/ld : invalid option -- 'p' 上失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34817552/
我的 CS2 讲师给出了一个 java 正则表达式,用于检查单词是否重复: \\b(\\w+)\\s+\\1\\b 如何修改它来检查某个单词是否重复两次,如“hello hello hello”或“h
关闭。这个问题是not reproducible or was caused by typos .它目前不接受答案。 这个问题是由于错别字或无法再重现的问题引起的。虽然类似的问题可能是on-topi
这个问题已经有答案了: printf anomaly after "fork()" (3 个回答) 已关闭 3 年前。 #include #include Void main() { Printf
我一直在分配以下作业来解释 3 个语句中发生的事情,但我无法弄清楚。 cout << ("hello" + 1); // ello cout << (*"hello") + 1; // 10
如何确定用户是否使用 hello.js 登录? 使用 Google Sign-In SDK,我可以使用 gapi.auth2.init() 注册回调,当设置 SDK 并准备好回答诸如“你是登录了吗?”
执行String S1 = "hello";后,JVM将在SCP中创建一个String对象,该对象将在value字段中保存一个字符数组,如 s1.value = {'h', 'e', 'l', 'l'
我正在 build gomobile Hello示例应用程序,但遇到以下问题:在 Xcode (7.1) 中打开应用程序后尝试构建并运行该应用程序时,出现错误“找不到 hello/Hello.h”文件
#coding=utf-8 '''Tkinter module''' from Tkinter import * import time root=Tk() t=Text(root,fg='red')
在C/C++中,下面两行代码有什么区别: char *str1="hello"; char *str2={"hello"}; 最佳答案 根据 2011 C 标准,条款 6.7.9 初始化,第 11
我对在 android studio 中导入 import.hello.Hello 时出错有疑问,如下图所示。请给我解决方案如何解决这个错误 最佳答案 请参阅此处 @Arpit Patel answe
hello/ 忽略文件夹结构中任何位置名为“hello”的所有文件夹 hello/* 仅忽略顶级文件夹“hello”。 这是为什么?请指出http://git-scm.com/docs/gitigno
请解释以下程序中发生了什么。 我在程序的开头和结尾检查了 strerror(errno) 返回的地址,并确认它每次都返回相同的地址。然后一旦确定这一点,在第一种情况下我继续将相同的地址分配给 ptr,
在整个互联网上你都会看到这个命令 alias hello='echo Hello' 是的,我知道以上是一个蹩脚的例子,但它不是重点。如果我执行它,它就会起作用。但是当我重新启动计算机时,它丢失了。为什
我正在学习 C++ 指针,而 -> 运算符对我来说似乎很奇怪。代替ptr->hello(); 可以写成 (*ptr).hello(); 因为它似乎也可以工作,所以我认为前者只是更方便方式。 是这样还是
这个问题在这里已经有了答案: About the changing id of an immutable string (5 个回答) 关闭4年前。 为什么 "hello"is "hello" 在 P
我需要Prolog的源代码,它用于与Weka连接,并且能够在Windows环境下使用Weka算法进行预测。我尝试通过 Java 连接,但无法使用 Java 和 Prolog 进行连接和预测。 最佳答案
这个问题已经有答案了: 已关闭11 年前。 Possible Duplicate: Capitalize First Char of Each Word in a String Java 编写进行以下
当我在 ruby 控制台中运行以下示例时,我感到很惊讶。它们都产生相同的输出。 "hello".length 和 "hello" .length ruby
我创建了一个Hello World应用,系统生成了下面大部分的Android语言。在没有 System.out 语句的情况下运行应用程序时,模拟器中不会显示“Hello”。然后,使用 Eclipse
是的,所以我正在制作一个沼泽标准 Hello world 以确保 android 正常工作。这是我第一次使用 android,所以我正在设置环境。我按照以下程序制作了程序:http://develop
我是一名优秀的程序员,十分优秀!