configure

What configure options were used when building gcc / libstdc++?

|▌冷眼眸甩不掉的悲伤 提交于 2019-11-30 06:12:32
After reading about the problem of passing empty std::string objects between DLLs and EXEs, I am concerned about the configure options used to build my gcc / libstdc++. More specific I want to know if --enable-fully-dynamic-string was used during ./configure . I'm using MinGW 4.4.0 on Windows XP. Does anybody know the configuration used to build this release? Is there a general way to find this information for any installation of GNU gcc? The gcc manual gives me no hint on this topic. Thanks for your input! gcc -v prints out the configuration options among other stuff: $ gcc -v Using built-in

Makefiles, “configure” files, and other compilation tools — How do they work? Why do they work the way they do?

断了今生、忘了曾经 提交于 2019-11-30 05:13:35
I'm still new to the UNIX/Linux world, and, in particular, to related tools, such as the GCC compiler. Namely, I'm still new to makefiles and things like that (I use MinGW on Windows), since so far, most of my development has been with IDEs like Visual Studio and Eclipse. When I open a typical project folder, I see files like these: configure make INSTALL install-sh (or a variant) There's quite a few things I don't understand here, and my main questions are these: What's the difference between these, and why do we need each one? (In the IDE world, all you have is a project file; that's it. So

“Logging out” of phpMyAdmin?

混江龙づ霸主 提交于 2019-11-30 03:13:25
The error that I get on phpMyAdmin is the following The phpMyAdmin configuration storage is not completely configured, some extended features have been deactivated." I have googled and looked this up for a while now and the common answer that comes up is to Log Out/In or the clear the cookies and cache. Clearing the cookies and caches did not work for me. I have tried to logout, but cannot seem to be able to find out how to, because in the updated version of phpMyAdmin, I believe that there is no logout button as opposed to the older versions which is why people posted that as a solution

where is a good tutorial on creating an R package with C++ source code? [closed]

南笙酒味 提交于 2019-11-29 22:13:27
I'm at a loss when I start looking at configure scripts. I'm not sure how to go about creating an R package which has several functions built from C/C++ in such a way that it's portable between Windows & Linux. My attempts to modify the guts of existing packages have been unfruitful. Any help or links would be greatly appreciated. Update: If possible I would like to link against: Boost , CUDA , & hwloc However, I realize that Boost will be a nightmare & hwloc won't be much better. So I'd settle for just CUDA. This was why I dove in the deep end and tried modifying some existing packages to

How do I specify LDFLAGS and CPPFLAGS for ./configure?

别说谁变了你拦得住时间么 提交于 2019-11-29 20:29:34
I am using a Mac running OS X 10.8.3. I am trying to compile cgminer 3.0.0. On my first run of ./configure I got the message: checking for LIBCURL... no checking for LIBCURL... no configure: error: Missing required libcurl dev >= 7.18.2 So I installed the latest version of libcurl using homebrew: brew install curl That seemed to do the trick. I got this message: downloaded: /Library/Caches/Homebrew/curl-7.30.0.tar.gz ==> ./configure --prefix=/usr/local/Cellar/curl/7.30.0 ==> make install ==> Caveats This formula is keg-only: so it was not symlinked into /usr/local. Mac OS X already provides

How to add include and lib paths to configure/make cycle?

左心房为你撑大大i 提交于 2019-11-29 18:51:18
I need a place to install libraries in a linux box I have no su access to. I'm using ~/local[/bin,/lib,/include], but I don't know how can I tell ./configure to look for libraries there (particularly, I'm trying to compile emacs, which needs libgif, which doesn't come in my distro). I tried adding export PATH=$PATH:~/local/bin export LD_LIBRARY_PATH=~/local/lib export C_INCLUDE_PATH=~/local/include export CPLUS_INCLUDE_PATH=~/local/include to .bashrc but it doesn't seem to work. You want a config.site file. Try: $ mkdir -p ~/local/share $ cat << EOF > ~/local/share/config.site CPPFLAGS=-I$HOME

How was my running php compiled?

a 夏天 提交于 2019-11-29 17:32:39
问题 I'm trying to compile a new instance of PHP (5.4.0) from the source code and want to keep compatibility with the one (PHP 5.3.6-13ubuntu3.6) already installed from the distro, Ubuntu-11.10. That is, I want to run ./configure with the same directives as the installed PHP. I always could see the ./configure command outputted by phpinfo() but this time, for my surprise, it's not provided. Do you know of any flag that prevent phpinfo of outputting the compile configuration? Or, Do you know of any

Configuring Maven for Windows 7, Files\Java\jdk1.6.0_23“” was unexpected at this time error

旧巷老猫 提交于 2019-11-29 11:05:17
问题 I am trying to configure Maven on my Win 7 machine. I am following these steps: http://maven.apache.org/download.cgi I downloaded Maven into folder c:\Program Files\Apache Software Foundation\apache-maven-3.0.5\ I set all environmental variables as described in the URL above JAVA_HOME = C:\Program Files\Java\jdk1.6.0_23 M2_HOME = c:\Program Files\Apache Software Foundation\apache-maven-3.0.5\ M2 = %M2_HOME%\bin PATH = %M2%; C:\Program Files (x86)\SSH Communications Security\SSH Secure Shell;

Compile C lib for iPhone

爷,独闯天下 提交于 2019-11-29 07:51:36
I'm trying to compile ZeroMQ C binding in order to be able to use it on iPhone, here is my configure options: ./configure --host=arm-apple-darwin --enable-static=yes --enable-shared=no CC=/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/arm-apple-darwin10-gcc-4.2.1 CFLAGS="-pipe -std=c99 -Wno-trigraphs -fpascal-strings -O0 -Wreturn-type -Wunused-variable -fmessage-length=0 -fvisibility=hidden -miphoneos-version-min=3.1.2 -gdwarf-2 -mthumb -I/Library/iPhone/include -isysroot /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.0.sdk -mdynamic-no-pic" CPP=/Developer/Platforms

Can't configure pyQt

淺唱寂寞╮ 提交于 2019-11-29 06:42:18
When I compile pyQt on Windows 7 it returns an error saying: Traceback (most recent call last): File "configure.py", line 32, in <module> import sipconfig ImportError: No module named sipconfig I have configured sip but the error still occurs. Can anyone help? The same happened to me on OSX. As @Janne Karila suggested, you need to download and build SIP first. In the extracted sip source folder issue these commands in a terminal: python configure.py make sudo make install After that (in case it succeeds) you should be able to build PyQt in his folder using the same 3 commands. Mauricio S. When