Hi.
devel_0_39 will not compile in OSX using scons build system, failing with:
ld: Undefined symbols: _lseek64 _open64 scons: *** [bin/pd] Error 1 scons: building terminated because of errors.
Ideas?
d
-- # David Plans Casal
problem.each { |day| assert_nil(spoon) }
David Plans Casal wrote:
Hi.
devel_0_39 will not compile in OSX using scons build system, failing with:
ld: Undefined symbols: _lseek64 _open64 scons: *** [bin/pd] Error 1 scons: building terminated because of errors.
Ideas?
yes, the scons-port of my extension uses tryCompile instead of tryLink to test whether open64 and lseek64 exist.
try changing the line~453 in SConscript:
- if conf.TryCompile("""#define _LARGEFILE64_SOURCE + if conf.Link("""#define _LARGEFILE64_SOURCE
mfg.ads.r IOhannes
On 5 Oct 2005, at 14:42, IOhannes m zmoelnig wrote:
yes, the scons-port of my extension uses tryCompile instead of tryLink to test whether open64 and lseek64 exist.
try changing the line~453 in SConscript:
- if conf.TryCompile("""#define _LARGEFILE64_SOURCE
- if conf.Link("""#define _LARGEFILE64_SOURCE
I changed line 478 to:
if conf.TryLink("""#define _LARGEFILE64_SOURCE
That works.
I understand from Tim that you're sending a fix...thank you!
d
-- # David Plans Casal
problem.each { |day| assert_nil(spoon) }