The following warnings occurred: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Warning [2] Undefined array key "lockoutexpiry" - Line: 94 - File: global.php PHP 8.1.31 (Linux)
|
scons install fails - Printable Version +- Forums (https://www.vdrift.net/Forum) +-- Forum: Community (https://www.vdrift.net/Forum/forumdisplay.php?fid=3) +--- Forum: Bugs (https://www.vdrift.net/Forum/forumdisplay.php?fid=7) +--- Thread: scons install fails (/showthread.php?tid=261) |
- clytle374 - 07-10-2006 Where is the spec file for autopackage? I tried making one with the gui tool, got ugly. Is it auto generated? Or is it in the scons scrips some where. I found some isues on fourms with 64 bit arch, but they were all dated a year ago or so. I found somthing similar to this problem, but it was an old ver of autopackage, I have since lost the link. I tried to build the CVS version (of autopackage) and get: Code: ./setup I just noticed you live in the same corner of the world. I tried adding my location to my profile but it detects union, wv as spam and deletes it Thanks Cory - clytle374 - 07-10-2006 OK This is what i think is happening. I was able to extract the files from the package and they seem good, some how the installer is looking at the 32 bit version and not the 64 bit. They have the same number( according to yum), so how it could tell them apart, I DON"T KNOW. makeinstaller is readable but i didn't have time to find the installer code. I could be all wrong, as i am in over my head. learn to swim. Thanks Cory - FFuser - 07-11-2006 installer script is in tools/autopackage/vdrift.apspec - clytle374 - 07-11-2006 update, I have been reading thru the auto package scripts, I can't find where it is checking GLIBC. It displays that it is checking for the highest GLIBC symbol when it builds the package, but i can't find that in the scripts (makeinstaller). Nor can i find where it is checked in the install scripts, I've been looking in the packagage using the -d debug or -x extract switches. If any one could point me in the direction, on how to track where the code is going. Cory - clytle374 - 07-13-2006 I think i have it, There is some kind of issue, I believe, with glibcrequire used by autopackage that thinks that glibc 2.4 is 2.2.4. So this should work on most systems.. Where do i put the package?, it is minimal as a test. CORY - thelusiv - 07-17-2006 That is indeed a strange issue...could you upload your package somewhere? If so I can mirror it on my web site, and we can see if some other x86_64 users can test it successfully. If it works, then I'll upload it to SourceForge. - clytle374 - 07-17-2006 Hey were back up!!! I can install this. I'm not up to snuff on programming (I'm good at assembly), but here is the offending piece, I comented (see below)the return 1 out of autopackage script-utils so it won't halt on glibc fail. Of course this is only a local fix, but I don't think many machines will have this problem. Code: function requireLibC() { Where do i upload package? I'm on a SAT so it'll take a bit. My email is public if you want to send it there THanks Cory - thelusiv - 07-17-2006 Do you have any public web space where you can upload it? An account on a server somewhere perhaps? If not you can just email it to me, and I'll post it on my server. I'll PM you my email address. - thelusiv - 07-18-2006 Alright clytle374 got the file to me and now it's up on my server: http://sqrville.org/vdrift_minimal_x86_64_test.package We need someone running x86-64 linux to test it, preferably with a different setup than his to make sure it works everywhere - clytle374 - 07-18-2006 Can we put it somewhere people will find it? Sorry but i want to know if it works, if so i'll build a full version. I'll set up a ftp for you to get it, rember i'm @ 128Kb UP. little "b" darnit Clytle - thelusiv - 07-26-2006 I got a reply on my autopackage forum post, and it seems perhaps we should try building on AMD64 without using apbuild. clytle374, would you like to try this on your system (if you haven't already) and see how the resulting .package file then works for you? - clytle374 - 07-27-2006 I all ready did,no good I really think the issue is the checking script( listed above). I've learned alot but can't quite read it yet. It seems to test the package with objdump whice returns 2.2.5 then tests the target system with the above script, I think is is looking at the file name (??) which is libc-2.4.so since there is no trailing .0 it reads as 2.2.4, and fails. Or I have no clue. Can you read this script.? Code: function requireLibC() { emacs /usr/share/autopackage/apkg-script-utils I was trying to register at the auto package site and the spam filer ate my confirm mail, could you relay the above? ALSO; Has anyone tried it? People willing to fight 64 bit will probably build it anyway. - snoopy161 - 08-30-2006 One line in the scons-script has the wrong syntax: change Code: env.Distribute (bin_dir, 'track_list.txt.full', 'track_list.txt.minimal') to Code: env.Distribute (bin_dir, ['track_list.txt.full', 'track_list.txt.minimal']) The brackets were missing Cheers Jan - clytle374 - 08-30-2006 I thought i'd check this out, I just ran SVN and reinstalled, works ok. The tracklist files is gone now, but doesn't seem to matter. I also couldn't find the above lines, what file are they in? Cory - thelusiv - 08-30-2006 In current SVN the track_list and car_list text files have been removed. Lists of cars and tracks are now made automatically based on which tracks and cars are found by looking in the directories. |