| CARVIEW |
Select Language
HTTP/2 200
expires: Thu, 19 Nov 1981 08:52:00 GMT
cache-control: no-store, no-cache, must-revalidate
pragma: no-cache
set-cookie: PHPSESSID=v1rjhetbvn13ke1b3md4ipaa83; path=/
content-type: text/html; charset=UTF-8
date: Mon, 29 Dec 2025 01:56:51 GMT
server: Apache
pkgsrc.se | The NetBSD package collection
archivers
audio
benchmarks
biology
cad
chat
comms
converters
cross
crosspkgtools
databases
devel
orc
doc
editors
emulators
filesystems
finance
fonts
games
geography
graphics
ham
inputmethod
lang
mail
math
mbone
meta-pkgs
misc
multimedia
net
news
parallel
pkgtools
print
regress
security
shells
sysutils
textproc
time
wip
wm
www
x11
* = Virtual Category
Path to this page:
./devel/orc, Compiler for vector operations
[
Branch: CURRENT, Version: 0.4.41, Package name: orc-0.4.41, Maintainer: pkgsrc-users
Orc is a library and set of tools for compiling and executing
very simple programs that operate on arrays of data. The "language"
is a generic assembly language that represents many of the features
available in SIMD architectures, including saturated addition and
subtraction, and many arithmetic operations.
Required to run:
[lang/python37]
Required to build:
[pkgtools/cwrappers] [devel/meson]
Navigation:
-
Browse pkgsrc
(this page)
archivers
audio
benchmarks
biology
cad
chat
comms
converters
cross
crosspkgtools
databases
devel
orcdoc
editors
emulators
filesystems
finance
fonts
games
geography
graphics
ham
inputmethod
lang
math
mbone
meta-pkgs
misc
multimedia
net
news
parallel
pkgtools
regress
security
shells
sysutils
textproc
time
wip
wm
www
x11
* = Virtual Category
Path to this page:
./devel/orc, Compiler for vector operations
[
CVSweb ] [
Homepage ] [
RSS ] [
Required by ] [
Add to tracker ]
Branch: CURRENT, Version: 0.4.41, Package name: orc-0.4.41, Maintainer: pkgsrc-users
Orc is a library and set of tools for compiling and executing
very simple programs that operate on arrays of data. The "language"
is a generic assembly language that represents many of the features
available in SIMD architectures, including saturated addition and
subtraction, and many arithmetic operations.
Required to run:
[lang/python37]
Required to build:
[pkgtools/cwrappers] [devel/meson]
Master sites:
Filesize: 228.723 KBVersion history: (Expand)
- (2025-10-24) Package has been reborn
- (2025-10-24) Package deleted from pkgsrc
- (2025-07-15) Package has been reborn
- (2025-07-15) Package deleted from pkgsrc
- (2025-02-18) Updated to version: orc-0.4.41
- (2024-09-13) Updated to version: orc-0.4.40
CVS history: (Expand)
| 2025-02-18 09:57:52 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message: orc: updated to 0.4.41 0.4.41 - orccodemem: Don't modify the process umask, which caused race conditions with other threads (L. E. Segovia) - Require glibc >= 2.07 (L. E. Segovia) - x86: various SSE and MMX fixes (L. E. Segovia) - avx: Fix sqrtps encoding causing an illegal instruction crash (L. E. Segovia) - Hide internal symbols from ABI and do not install internal headers (L. E. Segovia) - Rename backend to target, including orc-backend meson option and ORC_BACKEND environment variable (Jorge Zapata) - Testsuite, tools: Disambiguate OrcProgram naming conventions (L. E. Segovia) - Build: Fix _clear_cache call for Clang and error out on implicit function declarations (Sam James) - opcodes: Use MIN instead of CLAMP for known unsigned values to fix compiler warnings (Edward Hervey) - Spelling fix in debug log message (Marc Leeman) - ci improvements: Upload the generated .S and .bin and include Windows artifacts (Jorge Zapata) |
| 2024-08-03 12:43:02 by Nia Alarie | Files touched by this commit (1) |
Log message: orc: be very careful about forcing C standard to "c99" Most likely we still want extensions available... |
| 2024-02-29 08:40:48 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message: orc: updated to 0.4.38 0.4.38 - x86: account for XSAVE when checking for AVX support, fixing usage on hardened linux kernels where AVX support has been disabled (L. E. Segovia) - neon: Use the real intrinsics for divf and sqrtf (L. E. Segovia) - orc.m4 for autotools is no longer shipped. If anyone still uses it they can copy it into their source tree (Tim-Philipp Müller) |
| 2024-02-21 12:12:01 by Nia Alarie | Files touched by this commit (1) |
Log message: orc: Fix building with compilers that default to c89 |
| 2024-02-09 15:39:44 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message: orc: updated to 0.4.37 0.4.37 ====== - enable neon instructions on Apple ARM64 (Aleix Conchillo Flaqué) - orcc: Fix regression, was hard-coded to use "sse" as default target \ (Sebastian Dröge) - MMX backend fixes (L. E. Segovia, Jorge Zapata) - testsuite: Build fixes for Clang (L. E. Segovia) - testsuite, tools: Fix warning caused by inserting unneeded source operands (L. \ E. Segovia) - orccompiler: call sys_icache_invalidate() to invalidate macos inst cache \ (Aleix Conchillo Flaqué) - macOS/iOS version/target check build fixes (Aleix Conchillo Flaqué) |
| 2024-01-28 08:14:17 by Adam Ciarcinski | Files touched by this commit (4) | |
Log message: orc: updated to 0.4.36 0.4.36 - Only use AVX / AVX2 instructions on CPUs that support both AVX and AVX2 (fixes crash on machines that only support AVX) (L. E. Segovia) 0.4.35 - Add support for AVX / AVX2 (L. E. Segovia) - SSE backend improvements (L. E. Segovia) - New `orf` and `andf` opcodes for bitwise AND and OR for single precision \ floats (Jorge Zapata) - Add support for `convwf`, int16 to float conversion (Jorge Zapata) - Allow backend selection through ORC_TARGET environment variable (L. E. Segovia) - Documentation improvements (Jorge Zapata, L. E. Segovia, Tim-Philipp Müller) - orconce: Use Win32 once implementation with MSVC (Seungha Yang, L. E. Segovia) - orcc: add --binary option to output raw machine code for functions (L. E. Segovia) - orcprofile: Implement Windows high-resolution timestamp for MSVC to allow benchmarking on MSVC builds (L. E. Segovia) |
| 2023-08-14 07:25:36 by Thomas Klausner | Files touched by this commit (1247) |
Log message: *: recursive bump for Python 3.11 as new default |
| 2023-06-02 17:42:13 by Thomas Klausner | Files touched by this commit (1) | |
Log message: orc: fix PLIST after update |
