tcc: errors: underfinded symbol

Started by reddeercity, March 13, 2017, 02:48:11 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

reddeercity


Screen_Shot_10-12bit raw_rec
by RedDeerCityTV, on Flickr

a little history , over the last 2 months I have being setting up a ml development environment under Win7pro VM of Ubuntu.
So far I don't have any issue compiling the Unified with this:

hg clone -r unified https://bitbucket.org/hudson/magic-lantern
cd magic-lantern
cd platform
cd 5D2*
make zip


I have a couple of problems and it's more then likely my miss understand on how bitbucket works .
As I'm working locally on my VM with the unified code , I being having trouble merging & or updating different branches
I use "hg merge raw_video_10_bit_2_bit  or hg update no joy , I can't really find any clear definition on the syntax .
Any help would be greatly appreciated , So in the mean time I being just copying & paste the code in to my environment.
It works so far , I have successfully merged 10-12bit to the unified I have from Dec. complied and tested with the full MLV+audio
no crashes/lockups/battery pulls on my 5d2 (thou 1:1 is still a problem, working on it) ,
but not so with the raw_rec.mo and before anyone gets to excited I know the raw_rec is now mlv_lite
and I'll come to that bridge soon . So did I break the mlv metadata ? or did I miss some code parts ?
Once I can fix this dump mistake , I can move on to fixing issue on the digic iv cams mainly to get fully functional 10-12bit raw video
and get these cam up to date with the latest feature if possible .

I know it would have been easier to download a complete 10-12bit respiratory with unified merged but I really
need to understand how to do this correctly without relaying on other when I'm stuck .  :D

dmilligan

You only cloned the unified branch (that's the "-r unified" part in the clone command). Just clone the whole repo and you should be fine.

hg clone https://bitbucket.org/hudson/magic-lantern
cd magic-lantern
hg update unified


Otherwise you would need to "pull" the branches that you want from the remote before you can do a merge or update.

http://hginit.com

reddeercity