问题描述
我可能很遗漏某些真的,但我没有环境变量对话框.org / docs / main_codeblocks_en.htmlrel =nofollow>配置环境变量。我已经通过设置 - >环境... (以及设置中的其他子菜单),并且只是丢失了。
OpenSSL FIPS Capable特别关于将 CC
和 FIPSLD_CC
设置为嵌入模块的指纹。我甚至尝试运行以下作为一个没有喜悦的预建步骤( echo
是空的):
运行项目预构建步骤
export CC =`find / usr / local / ssl -name fipsld`
export FIPSLD_CC =`find / usr / bin -name g ++ `
echo $ CC
echo $ FIPSLD_CC
我正在Debian 7.3(x64)完全修补,如果重要。从Debian的回购中安装了Code :: Blocks。 OpenSSL是定制的,并安装在 / usr / local / ssl
中。
在代码中设置环境变量::块10.05?
环境变量编辑器是一个可选的插件。 Debian软件包可以在找到。
要安装它,您需要安装软件包 codeblocks-contrib
以及 codeblocks
sudo apt-get install codeblocks codeblocks-contrib
/ pre>
关闭并重新启动Code :: Blocks,如果它正在运行。您正在查找的对话框将显示在设置 - > 环境中
I'm probably missing something really obvious, but I don't have the Environmental Variables dialog shown in Configuring environmental variables. I've been through Settings -> Environment... (and other submenus from Settings) and its just missing.
OpenSSL FIPS Capable is particular about having
CC
andFIPSLD_CC
set to embed the module's fingerprint. I even tried running the following as a prebuild step with no joy (theecho
's are empty):Running project pre-build steps export CC=`find /usr/local/ssl -name fipsld` export FIPSLD_CC=`find /usr/bin -name g++` echo $CC echo $FIPSLD_CC
I'm working on Debian 7.3 (x64) fully patched, if it matters. Code::Blocks was installed from Debian's repos. OpenSSL was custom built and installed in
/usr/local/ssl
.Where does one set environmental variables in Code::Blocks 10.05?
解决方案The Environment Variables Editor is an optional plugin. Debian packages can be found at Package: codeblocks-contrib (10.05-2.1).
To install it you need to install package
codeblocks-contrib
as well ascodeblocks
:sudo apt-get install codeblocks codeblocks-contrib
Close and restart Code::Blocks, if it is running. The dialog you looking for will then appear in Settings -> Environment
这篇关于Code :: Blocks 10.05和Environmentmental Variables的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!