|
查看了media-video/ffmpeg-0.5_p20373的ebuild,赫然发现下面一段。
- 155 # CPU features
- 156 for i in mmx ssse3 altivec ; do
- 157 use $i || myconf="${myconf} --disable-$i"
- 158 done
- 159 use mmxext || myconf="${myconf} --disable-mmx2"
- 160 use 3dnow || myconf="${myconf} --disable-amd3dnow"
- 161 use 3dnowext || myconf="${myconf} --disable-amd3dnowext"
- 162 # disable mmx accelerated code if PIC is required
- 163 # as the provided asm decidedly is not PIC.
- 164 if gcc-specs-pie ; then
- 165 myconf="${myconf} --disable-mmx --disable-mmx2"
- 166 fi
复制代码
貌似是说启用了mmx、ssse3、altivec这些use反而是禁用了这些指令集。我的理解对么?
---
看错了。 |
|