Code::Blocks 10.05 and Environmentmental Variables

吃可爱长大的小学妹 提交于 2019-12-11 08:23:54

问题


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 and FIPSLD_CC set to embed the module's fingerprint. I even tried running the following as a prebuild step with no joy (the echo'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?


回答1:


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 as codeblocks:

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



来源:https://stackoverflow.com/questions/20989838/codeblocks-10-05-and-environmentmental-variables

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!