[Bug 220590] math/fftw3: fails to build on armv6 (729 ports skipped)

2018-10-10 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=220590 --- Comment #12 from commit-h...@freebsd.org --- A commit references this bug: Author: jbeich Date: Wed Oct 10 21:44:42 UTC 2018 New revision: 481771 URL: https://svnweb.freebsd.org/changeset/ports/481771 Log: math/fftw3: drop FreeBSD

[Bug 220590] math/fftw3: fails to build on armv6 (729 ports skipped)

2017-08-02 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=220590 Kubilay Kocak changed: What|Removed |Added Flags|

[Bug 220590] math/fftw3: fails to build on armv6 (729 ports skipped)

2017-08-02 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=220590 Jan Beich changed: What|Removed |Added See Also|

[Bug 220590] math/fftw3: fails to build on armv6 (729 ports skipped)

2017-07-31 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=220590 --- Comment #11 from commit-h...@freebsd.org --- A commit references this bug: Author: jhale Date: Mon Jul 31 12:16:28 UTC 2017 New revision: 446956 URL: https://svnweb.freebsd.org/changeset/ports/446956 Log: MFH: r446955 Fix build

[Bug 220590] math/fftw3: fails to build on armv6 (729 ports skipped)

2017-07-31 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=220590 Jason E. Hale changed: What|Removed |Added Status|In Progress |Closed

[Bug 220590] math/fftw3: fails to build on armv6 (729 ports skipped)

2017-07-31 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=220590 --- Comment #10 from commit-h...@freebsd.org --- A commit references this bug: Author: jhale Date: Mon Jul 31 11:58:28 UTC 2017 New revision: 446955 URL: https://svnweb.freebsd.org/changeset/ports/446955 Log: Fix build on armv6. The

[Bug 220590] math/fftw3: fails to build on armv6 (729 ports skipped)

2017-07-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=220590 --- Comment #9 from mikael.uran...@gmail.com --- or you can use (untested) CFLAGS_armv6= -fno-builtin-sincos -fno-builtin-sin -fno-builtin-cos \ -fno-builtin-sincosf -fno-builtin-sinf -fno-builtin-cosf \

[Bug 220590] math/fftw3: fails to build on armv6 (729 ports skipped)

2017-07-12 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=220590 --- Comment #8 from Jason E. Hale --- (In reply to mikael.urankar from comment #7) Ok, I'll change it to check for less than 1200032, then. Thanks! -- You are receiving this mail because: You are on the CC list for

[Bug 220590] math/fftw3: fails to build on armv6 (729 ports skipped)

2017-07-12 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=220590 --- Comment #7 from mikael.uran...@gmail.com --- The 11 branch is missing this commit which solved the problem on 12: base r319047 -- You are receiving this mail because: You are on the CC list for the bug.

[Bug 220590] math/fftw3: fails to build on armv6 (729 ports skipped)

2017-07-12 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=220590 Jason E. Hale changed: What|Removed |Added Flags|maintainer-feedback?(jhale@

[Bug 220590] math/fftw3: fails to build on armv6 (729 ports skipped)

2017-07-12 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=220590 --- Comment #6 from Jason E. Hale --- Created attachment 184300 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=184300=edit Disable unsafe-math-optimizations on armv6 This patch should disable

[Bug 220590] math/fftw3: fails to build on armv6 (729 ports skipped)

2017-07-10 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=220590 --- Comment #5 from Jan Beich --- (In reply to mikael.urankar from comment #4) > Are you sure 12 is affected? Ah, you're right! When writing comment 1 I've only checked whether sincos is emitted but not if libm

[Bug 220590] math/fftw3: fails to build on armv6 (729 ports skipped)

2017-07-10 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=220590 mikael.uran...@gmail.com changed: What|Removed |Added CC||mikael.uran...@gmail.com

[Bug 220590] math/fftw3: fails to build on armv6 (729 ports skipped)

2017-07-10 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=220590 Jan Beich changed: What|Removed |Added See Also|

[Bug 220590] math/fftw3: fails to build on armv6 (729 ports skipped)

2017-07-09 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=220590 --- Comment #3 from Jan Beich --- Here's a test case: $ cat a.c #include #include int main(int argc, char *argv[]) { printf("%Lf\n", cosl(5)); printf("%Lf\n", sinl(5)); return 0; } $ cc a.c -lm -O1

[Bug 220590] math/fftw3: fails to build on armv6 (729 ports skipped)

2017-07-09 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=220590 --- Comment #2 from Jan Beich --- Err, -ffast-math is a group of flags. The issue is caused by -funsafe-math-optimizations. -- You are receiving this mail because: You are on the CC list for the bug.

[Bug 220590] math/fftw3: fails to build on armv6 (729 ports skipped)

2017-07-09 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=220590 --- Comment #1 from Jan Beich --- Affected FreeBSD versions: 11.0 (clang 3.8), 11.1 (clang 4.0), 12.0 (clang500-import). Workarounds: define USE_GCC=yes or drop -ffast-math. -- You are receiving this mail because: You

[Bug 220590] math/fftw3: fails to build on armv6 (729 ports skipped)

2017-07-09 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=220590 Bug ID: 220590 Summary: math/fftw3: fails to build on armv6 (729 ports skipped) Product: Ports & Packages Version: Latest Hardware: Any OS: Any