When i compile n3xtD_PB.pbi im get that error:
Application initialization error (0xc0150002). Press "OK" to exit.
What is it? (engine build 17, PB 4.3)
i had that error related to an update on a diff application once ( not PB written).
You using Xp and what version of Service Pack you have installed ?
Its related to the MSVC TK Dll's ( Manifest and DLL not the same...)- and since M$ did a "security patch" lately i am assuming you got the wrong redistributable VS Librarys ( prolly installed from another app or patched via liveupdate ).
Other than that the only fix that comes to mind would be a totally static linking of the libs ... ( resulting in very large dll's ).
Cheers,
Thalius
"In 3D there is never enough Time to do Things right,
but there's always enough Time to make them *look* right." "psssst! i steal signatures... don't tell anyone! "
"In 3D there is never enough Time to do Things right,
but there's always enough Time to make them *look* right." "psssst! i steal signatures... don't tell anyone! "
"In 3D there is never enough Time to do Things right,
but there's always enough Time to make them *look* right." "psssst! i steal signatures... don't tell anyone! "
This one was compiled under Ubuntu - i wonder if statically linking works also nice with otehr distros and co.
Cheers,
Thalius
"In 3D there is never enough Time to do Things right,
but there's always enough Time to make them *look* right." "psssst! i steal signatures... don't tell anyone! "
going to this directory : ./SourceEngine/source
create new file called "install.sh"
put inside this script :
#! /bin/sh
echo Installation of N3XT3D.
cd ./n3xtd/
make sharedlib
make staticlib
cd ./Newton2.07/Linux/
cp libNewton.so /usr/lib
cd ..
cd ..
cd ..
cd ..
clear
cd ./lib/Linux/
cp libN3xtD.so.1.5 /usr/lib
cp libN3xtD.a /usr/lib
ldconfig
echo Install sucess !
Compiling only works if you have all the dev libs together and compilation env. but what if you lets say redistribute your app and it depends on the n3xt-d.so , will it run on the target machine ?
Cheers,
Thalius
"In 3D there is never enough Time to do Things right,
but there's always enough Time to make them *look* right." "psssst! i steal signatures... don't tell anyone! "
thats my point but will it run on all flavors of linux ? Thats what i want to know basically.
hence so many diuff libs , combinations, kernels.
"In 3D there is never enough Time to do Things right,
but there's always enough Time to make them *look* right." "psssst! i steal signatures... don't tell anyone! "