| View previous topic :: View next topic |
| Author |
Message |
sherpya

Joined: 03 Oct 2005 Posts: 61
|
Posted: Wed Nov 02, 2005 8:48 pm Post subject: Build script for psp sdk supported libs |
|
|
I've made a bash script to build all supported libs in svn, it can be handy, feel free to add it to main svn tree
without params it builds all libs specified in LIBS var inside the file,
with params it build selectively the chosen libs
http://oss.netfarm.it/psp/build_libs.sh
It works on bash, tested on linux, but it should work also in cygwin environment |
|
| Back to top |
|
 |
rinco
Joined: 21 Jan 2005 Posts: 255 Location: Canberra, Australia
|
Posted: Thu Nov 03, 2005 12:54 pm Post subject: |
|
|
Nice.
Can you make it build everything in the pspware repository? |
|
| Back to top |
|
 |
sherpya

Joined: 03 Oct 2005 Posts: 61
|
Posted: Fri Nov 04, 2005 5:35 am Post subject: |
|
|
| most of them do not build at all but I can make a script for the working projects |
|
| Back to top |
|
 |
sherpya

Joined: 03 Oct 2005 Posts: 61
|
Posted: Sat Nov 05, 2005 4:46 pm Post subject: |
|
|
updated the script version 0.2
changes:
| Code: |
# - Version 0.2 : * Check for gmake and fixes to work on NetBSD
# (and maybe also on non-GNU systems)
# * Removed bashism now it also works with sh
# * Moved SDL & co. as last targets
# * Fixed some stuff (logic deps)
|
http://oss.netfarm.it/psp/build_libs.sh |
|
| Back to top |
|
 |
alexmae
Joined: 12 Mar 2005 Posts: 22
|
Posted: Sun Nov 06, 2005 12:44 am Post subject: |
|
|
| nice to see you here too sherpya ;) |
|
| Back to top |
|
 |
sherpya

Joined: 03 Oct 2005 Posts: 61
|
Posted: Mon Nov 07, 2005 10:43 pm Post subject: |
|
|
@alexmae
:P
@All
Version 0.3
| Code: |
# - Version 0.3 : * Added new targets ogg/vorbis/tremor/libbulletml
|
you may need to change libTremor/autogen.sh
line 30:
from:
| Code: |
(libtool) < /dev/null > /dev/null 2>&1 || {
|
to
| Code: |
(libtool --version) < /dev/null > /dev/null 2>&1 || {
|
|
|
| Back to top |
|
 |
|