Magic Lantern Forum

Developing Magic Lantern => General Development => Topic started by: reddeercity on March 13, 2017, 02:48:11 AM

Title: tcc: errors: underfinded symbol
Post by: reddeercity on March 13, 2017, 02:48:11 AM
(https://c1.staticflickr.com/4/3902/33406931865_6f4e1a9fb5_n.jpg) (https://flic.kr/p/SU4fXT)
Screen_Shot_10-12bit raw_rec (https://flic.kr/p/SU4fXT) by RedDeerCityTV (https://www.flickr.com/photos/67942440@N06/), 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
Title: Re: tcc: errors: underfinded symbol
Post by: dmilligan on March 13, 2017, 03:13:41 AM
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
Title: Re: tcc: errors: underfinded symbol
Post by: reddeercity on March 13, 2017, 03:19:00 AM
@dmilligan , thanks