I'm afraid we haven't gotten around to trying out the build process
on 64-bit systems yet. I don't have the code in front of me right now
for both versions, but in the heart branch, Core/Build/build_mex.m
lets you specify additional CFLAGS arguments to the compiler, which
would allow you to pass the '-fPIC' argument that gcc is looking for.
I don't really know if this will resolve the problem, but you might
try editing the source for that file, and changing the default
options:
if nargin < 3
opt.prefix = libs_root(); opt.cflags = ''; opt.ldflags = '';
opt.outname = ''; opt.verbose = 0;
end
to this
if nargin < 3
opt.prefix = libs_root(); opt.cflags = '-fPIC'; opt.ldflags = '';
opt.outname = ''; opt.verbose = 0;
end
Since I'm not running a 64-bit kernel, I can't really verify this, but
it's worth a try. Please let us know either way.
-Matt
On Wed, Jun 25, 2008 at 6:56 PM, Brian Miller <bria...@gmail.com> wrote:
>