Custom Query (4816 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (133 - 135 of 4816)

Ticket Owner Reporter Resolution Summary
#821 jeremy@… archaic@… fixed Creating dirs with install instead of mkdir
Description

mkdir -p /{root,sbin,tmp,usr/local,var,opt} mkdir -p /var/{tmp,opt,cache,lib/misc,local} chmod 0750 /root chmod 1777 /tmp /var/tmp vs install -d /{sbin,usr/local,var,opt} install -m 0750 -d /root install -m 1777 -d /{tmp,var/tmp}

#822 Matthew Burgess kpfleming@… fixed gettext testsuite needs fa_IR/UTF-8 locale
Description

The gettext testsuite in gettext-0.14.1 needs an additional locale installed that's not currently in the list installed in chapter 6. The needed command is:

localedef -i fa_IR -f UTF-8 fa_IR

#824 lfs-book@… matt@… invalid SDL fails with certain CFLAGS or fails to detect correct machine Arch
Description

This is a hard bug to reproduce. as I have only come across this after building a lot of LFS machines on different hardware

First I'm sorry that this is a BLFS problems, but there is not a catagory for BLFS so I can only assume it goes under the LFS book. Sorry if I am mistaken.

The problem I have come across on SDL 1.2.6 is that on a lot of platforms setting the gcc CFLAGS/CXXFLAGS with an -Ox optimisation causes failure, and not specifying any CFLAGS/CXXFLAGS causes the configure script to set -O2 which again causes it to fail. After much playing I came to the following conclusion optimisation on this package is not good, probably down to the ammount of use of nasm. The reason the optimisation appears to be failing is because if you don't set a -march=$your_cpu or other options that correctly identify your cpu the configure script does not always get it right. I don't know what causes the configure script to get it wrong but on one machine it set my pentium 3 to a pentiumpro and my Opteron to an AMD64. I've seen it have a few messy calls on the UltraSparc CPU also.

The only way I can get around this is to set my CFLAGS/CXXFLAGS to -march-cpu and leave it at that, this way the CPU is correctly identified and the configure script cannot force -O2 on the end, and you have not set any -Ox problems

This does appear a rare occurance in the SDL package, however it may be worth mentioning in the book to set your compile options to force the CPU type - and the CPU type alone, nothing else.

The error caused by this problem is normally some variation on

SDL_RLEaccel.c:845: error: invalid `asm': invalid expression as operand

Thanks,

Matt.

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.