1 问题描述: ubuntu环境下用eclipse+maven开发Scala的时候出现错误:scalac error: bad option: '-make:transitive' on mvn package via command line 2 解决方法: (1)打开pom.xml,删除 <parameter value="-make:transitive"/> (2)添加dependance <dependency>             <gro…
关闭idea 打开项目所在位置并cd .idea 修改scala_compiler.xml文件 删除掉参数行包含-make:transitive 保存后退出编辑并重启idea打开项目…
系统:ubuntu16.04.1 软件:Virtualbox-5.1 编译器:GCC 4.7.4 在如上环境下安装Vbx5.1提示我在终端执行/sbin/vboxconfig命令 照做 出现如下error vboxdrv.sh: Building VirtualBox kernel modules. vboxdrv.sh: failed: Look at /var/log/vbox-install.log to find out what went wrong. There were probl…
M2Crypto 是最完整的为 Python 包装 OpenSSL 的 RSA,DSA,DH,EC,HMACs,消息摘要,对称密码算法(包括AES)的一个库工具.而自从 M2Crypto 升级到版本 0.22.5 后,用 pip install M2Crypto 命令来安装 M2Crypto 时总是会失败.在没有升级到此版本之前,使用 pip 安装则是没有问题的.下面来找找原因.系统环境:CentOS 6.7 x86失败关键字:swig 失败现象: swigging SWIG/_m2crypto…
今天在用vs2015编译ogre 1.6.5的代码时发生连接错误 LINK : fatal error LNK1117: syntax error in option 'VERSION:1.6.5'. 解决:On the Settings (Project > Settings > Linker) removing the "Version" entry. 没有深入搞懂为什么,先Mark下. 参考: http://stackoverflow.com/questions/20…
cc1: error: unrecognized command line option "-m64"cc1: error: unrecognized command line option "-mno-red-zone"cc1: error: unrecognized command line option "-mcmodel=kernel"cc1: error: unrecognized command line option "-…
windows 8 安装 oracle 11g 报错:command line option syntax error,type command/? for help 在windows8操作系统上安装oracle 数据库一定要注意安装路径中不能包括中文,当前登录系统的账户姓名不能是中文名字,一般我 安装windows8操作系统时需要捆绑一个我们申请好的微软邮箱,邮箱账号中姓名大多都写的是中文名字,当用该邮箱账号成功捆绑 windows8操作系统,操作系统就自动生成如:C:\Users\姓名\..…
安装qt时在执行./configure时报错:error: unrecognized command line option '-fuse-ld=gold' 这个错误是qt的一个bug. 在装有gold linker的系统里,编译脚本会加入-fuse-ld=gold选项,但这个选项gcc是不支持的. 解决办法是移除该选项,找到文件src/3rdparty/webkit/Source/common.pri,屏蔽QMAKE_LFLAGS+=-fuse-ld=gold. 将# QMAKE_LFLAGS…
VS2010安装WDT时出现"command line option syntax error.Type command/?for help错误 解决:可能是由于你的安装源文件所在的路径中有中文,所以你可将安装文件放在一个没有中文的路径.…
MacOS 上安装 R 包 install.packages("data.table") 后面提示是否安装需要编译的版本: Do you want to install from sources the package which needs compilation?y/n 选择了 y 之后,报错 clang: error: unsupported option '-fopenmp' 网上找到的解决方法是: 安装 clang-omp brew install clang-omp 但是提…