Search found 27 matches

by ant512
Fri Oct 07, 2016 3:33 pm
Forum: Programming Discussion
Topic: Wiki feedback
Replies: 102
Views: 75410

Re: Wiki feedback

Decided to try this out with a fresh install of OS X Sierra to see if my setup is confusing things. I installed Homebrew, then installed wget, then ran the latest script. for i in `ls */kos/dreamcast.cnf | sed -e "s%/kos/dreamcast.cnf%%g"`; do make -C $i || exit -1; done kos-cc -c ext2fs.c...
by ant512
Fri Sep 30, 2016 3:25 pm
Forum: Programming Discussion
Topic: Wiki feedback
Replies: 102
Views: 75410

Re: Wiki feedback

Edit: nevermind, I googled it. This should be enough http://mac-dev-env.patrickbougie.com/libjpeg http://mac-dev-env.patrickbougie.com/libpng Ah, that makes sense. I already have both of those installed via brew, but to a non-standard location. I'll try symlinking them. OK, here's what finally got ...
by ant512
Fri Sep 30, 2016 9:00 am
Forum: Programming Discussion
Topic: Wiki feedback
Replies: 102
Views: 75410

Re: Wiki feedback

bogglez wrote:Edit: nevermind, I googled it. This should be enough
http://mac-dev-env.patrickbougie.com/libjpeg
http://mac-dev-env.patrickbougie.com/libpng
Ah, that makes sense. I already have both of those installed via brew, but to a non-standard location. I'll try symlinking them.
by ant512
Fri Sep 30, 2016 1:15 am
Forum: Programming Discussion
Topic: Wiki feedback
Replies: 102
Views: 75410

Re: Wiki feedback

bogglez wrote:So if you find a good solution I can automate please tell me, thanks
I switched to Ubuntu in VirtualBox. :o

...but I'm now up and running with lxdream in OSX and the dev kit in Ubuntu. Thanks for the installer!
by ant512
Thu Sep 29, 2016 11:51 am
Forum: Programming Discussion
Topic: Wiki feedback
Replies: 102
Views: 75410

Re: Wiki feedback

Try the following please: That worked! Thanks! This is the next problem when trying to build KOS: sh-3.2$ make for i in utils kernel addons ; do make -C $i || exit -1; done for i in genromfs wav2adpcm vqenc scramble dcbumpgen; do make -C $i; done make[2]: Nothing to be done for `all'. make[2]: Noth...
by ant512
Thu Sep 29, 2016 12:59 am
Forum: Programming Discussion
Topic: Wiki feedback
Replies: 102
Views: 75410

Re: Wiki feedback

That gets me a bit further, but then: /opt/toolchains/dc/kos/utils/dc-chain/build-gcc-arm-eabi-4.7.3/./gcc/xgcc -B/opt/toolchains/dc/kos/utils/dc-chain/build-gcc-arm-eabi-4.7.3/./gcc/ -B/opt/toolchains/dc/arm-eabi/arm-eabi/bin/ -B/opt/toolchains/dc/arm-eabi/arm-eabi/lib/ -isystem /opt/toolchains/dc/...
by ant512
Thu Sep 29, 2016 12:35 am
Forum: Programming Discussion
Topic: Wiki feedback
Replies: 102
Views: 75410

Re: Wiki feedback

The kos_setup_script.sh file is broken under OSX and produces this error: sed: 1: "Makefile": invalid command code M Line 93 is this: sed -i'' "s/,objc,obj-c++//" Makefile It should be this: sed -i '' "s/,objc,obj-c++//" Makefile Note the space after "-i".