ALT Linux Sisyphus discussions
 help / color / mirror / Atom feed
From: "Dmitry V. Levin" <ldv@altlinux.org>
To: ALT Linux Sisyphus discussions <sisyphus@lists.altlinux.org>
Subject: Re: [sisyphus] liblensfun vs g++
Date: Wed, 19 Aug 2009 04:41:07 +0400
Message-ID: <20090819004107.GB12237@wo.int.altlinux.org> (raw)
In-Reply-To: <8b9c685c0908170825p1ffd3287y60f5fc4c4e9386d7@mail.gmail.com>


[-- Attachment #1.1: Type: text/plain, Size: 1000 bytes --]

On Mon, Aug 17, 2009 at 06:25:39PM +0300, Victor Forsyuk wrote:
[...]
> Если бы у меня было время всё бросить и сесть с отладчиком локализуя до 100
> строк кода я бы не отказал себе в удовольствии самому покопаться. Но эта
> задача у меня в самом конце TODO, а если это действительно баг в gcc, то его
> стоило бы локализовать пораньше...
> 
> Проблема обнаружилась в liblensfun. Эту библиотеку сейчас использует ufraw.
> Скомпилированный при помощи gcc 4.3 код отлично работает в ufraw. Для
> компиляции gcc 4.4 пришлось приложить патчик на тему const char, но он тут
> даже теоретически не может быть при чем, поскольку чинит сборку своего
> makedep и ABI посему никак сломать не мог.
> 
> Если использовать gcc 4.4, то даже с "-O0" компилируется нерабочий код.
> Симптом: ufraw при открытии любого файла зависает, вероятно где-то
> зацикливаясь(?).

Поведение g++ изменилось между 4.3 и 4.4; если это не regression, то, видимо,
надо патчить liblensfun (см. патч).


-- 
ldv

[-- Attachment #1.2: lensfun-0.2.3-alt-gcc44.diff --]
[-- Type: text/plain, Size: 1060 bytes --]

--- lensfun/libs/lensfun/lens.cpp
+++ lensfun/libs/lensfun/lens.cpp
@@ -301,6 +301,7 @@ const char *lfLens::GetDistortionModelDesc (
             if (params)
                 *params = param_ptlens;
             return "PanoTools lens model";
+        default: break;
     }
 
     if (details)
@@ -335,6 +336,7 @@ const char *lfLens::GetTCAModelDesc (
             if (params)
                 *params = param_linear;
             return "Linear";
+        default: break;
     }
 
     if (details)
@@ -372,6 +374,7 @@ const char *lfLens::GetVignettingModelDesc (
             if (params)
                 *params = param_pa;
             return "6th order polynomial";
+        default: break;
     }
 
     if (details)
@@ -405,6 +408,7 @@ const char *lfLens::GetLensTypeDesc (lfLensType type, const char **details)
             if (details)
                 *details = "Ref: http://wiki.panotools.org/Equirectangular_Projection";
             return "Equirectangular";
+        default: break;
     }
 
     if (details)

[-- Attachment #2: Type: application/pgp-signature, Size: 197 bytes --]

  parent reply	other threads:[~2009-08-19  0:41 UTC|newest]

Thread overview: 33+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-08-05 17:08 [sisyphus] Странности при переходе объединении двух целых в вещественное на x86_64 Roman Savochenko
2009-08-05 21:34 ` Alexey Rusakov
2009-08-06  7:17   ` Roman Savochenko
2009-08-06  7:59     ` Alexey Rusakov
2009-08-06 16:21     ` Michael Shigorin
2009-08-06 21:10       ` Michael Shigorin
2009-08-06 18:12 ` Kirill A. Shutemov
2009-08-07  5:49   ` Roman Savochenko
2009-08-07  6:28     ` Yuriy Kashirin
2009-08-07  6:31     ` Kirill A. Shutemov
2009-08-07  7:14       ` Roman Savochenko
2009-08-07  7:35         ` Kirill A. Shutemov
2009-08-07  8:14           ` Roman Savochenko
2009-08-07  8:54             ` Kirill A. Shutemov
2009-08-07  8:57               ` Roman Savochenko
2009-08-07  9:14                 ` Kirill A. Shutemov
2009-08-07  8:58               ` Alexey Rusakov
2009-08-07  9:02               ` Roman Savochenko
2009-08-07  9:17                 ` Alexey Rusakov
2009-08-07 12:59                   ` Serge Ryabchun
2009-08-07 13:15                     ` Alexey Rusakov
2009-08-07 15:43                     ` Kirill A. Shutemov
2009-08-13 16:04                         ` Kirill A. Shutemov
2009-08-17 22:39                           ` [sisyphus] liblensfun Dmitry V. Levin
2009-08-18 23:18                             ` Dmitry V. Levin
2009-08-17 15:48                             ` [sisyphus] Странности при переходе объединении двух целых в вещественное на x86_64 Alexander Bokovoy
2009-08-17 20:47                             ` [sisyphus] ufraw/liblensfun/etc vs gcc Dmitry V. Levin
2009-08-17 21:25                                 ` Dmitry V. Levin
2009-08-18  8:40                                   ` Anton V. Boyarshinov
2009-08-19  0:41                             ` Dmitry V. Levin [this message]
2009-08-19  8:27                               ` [sisyphus] liblensfun vs g++ Sergey Vlasov
2009-08-19  8:33                                 ` Damir
2009-08-19 23:10                                   ` Dmitry V. Levin

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20090819004107.GB12237@wo.int.altlinux.org \
    --to=ldv@altlinux.org \
    --cc=sisyphus@lists.altlinux.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link

ALT Linux Sisyphus discussions

This inbox may be cloned and mirrored by anyone:

	git clone --mirror http://lore.altlinux.org/sisyphus/0 sisyphus/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 sisyphus sisyphus/ http://lore.altlinux.org/sisyphus \
		sisyphus@altlinux.ru sisyphus@altlinux.org sisyphus@lists.altlinux.org sisyphus@lists.altlinux.ru sisyphus@lists.altlinux.com sisyphus@linuxteam.iplabs.ru sisyphus@list.linux-os.ru
	public-inbox-index sisyphus

Example config snippet for mirrors.
Newsgroup available over NNTP:
	nntp://lore.altlinux.org/org.altlinux.lists.sisyphus


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git