On 03/11/2013, at 1:33 AM, Shayne Fletcher wrote:

> [sfletche@qf2 project]$ build/release/host/bin/flx 
> --test-build/release/hello.flx
> build/release/host/bin/flx: /lib64/libc.so.6: version `GLIBC_2.14' not found 
> (required by build/release/host/bin/flx)
> build/release/host/bin/flx: /usr/lib64/libstdc++.so.6: version 
> `GLIBCXX_3.4.10' not found (required by build/release/host/bin/flx)
> build/release/host/bin/flx: /usr/lib64/libstdc++.so.6: version 
> `GLIBCXX_3.4.9' not found (required by build/release/host/bin/flx)
> build/release/host/bin/flx: /usr/lib64/libstdc++.so.6: version 
> `GLIBCXX_3.4.11' not found (required by build/release/host/bin/flx)
> build/release/host/bin/flx: /usr/lib64/libstdc++.so.6: version 
> `GLIBCXX_3.4.15' not found (required by build/release/host/bin/flx)
> 
> I know this is no Felix question but, what do y'all do when this comes up?
> 

You can try running flx with

FLX_SHELL_ECHO=1 build/release/host/bin/flx --test= .......

If you're using the tarball it's probably simple: the precompiled
binaries require C and C++ libraries that were on the server when
I built them, but you don't have those library versions.

Even though "flx" is statically linked, the C/C++ libraries are still
dynamically loaded.

Note gcc uses --std=c++0x switch for C++, but I can't see that its a problem,
since even the C library failed.

My guess here is that libc and libstdc++ require glibc and glibcxx
and they're not the right version.

The easy fix .. build Felix from source:

make
make bootstrap


--
john skaller
skal...@users.sourceforge.net
http://felix-lang.org




------------------------------------------------------------------------------
Android is increasing in popularity, but the open development platform that
developers love is also attractive to malware creators. Download this white
paper to learn more about secure code signing practices that can help keep
Android apps secure.
http://pubads.g.doubleclick.net/gampad/clk?id=65839951&iu=/4140/ostg.clktrk
_______________________________________________
Felix-language mailing list
Felix-language@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/felix-language

Reply via email to