where is atomic.h with option -latomic
we could find "stdatomic.h" on the c++ inclusion like the below.
/usr/include/c++/4.4.4/stdatomic.h
we think, there is it in the "wxWidgets Library".
https://docs.wxwidgets.org/3.0/atomic_8h.html
written in as manner.
---
Something wrong happened in the audacity, which might be right.
Anyway, we can find "atomic.h" in another "libavutil".
where is atomic.h on the compatible libatomic.i686
we can not find the atomic.h in the directory of libavutil on the adacity.
$ tree .
.
├── adler32.h
├── aes.h
├── attributes.h
├── audio_fifo.h
├── audioconvert.h
├── avassert.h
├── avconfig.h
├── avstring.h
├── avutil.h
├── base64.h
├── blowfish.h
├── bprint.h
├── bswap.h
├── buffer.h
├── channel_layout.h
├── common.h
├── cpu.h
├── crc.h
├── dict.h
├── downmix_info.h
├── error.h
├── eval.h
├── ffversion.h
├── fifo.h
├── file.h
├── frame.h
├── hmac.h
├── imgutils.h
├── intfloat.h
├── intfloat_readwrite.h
├── intreadwrite.h
├── lfg.h
├── log.h
├── lzo.h
├── macros.h
├── mathematics.h
├── md5.h
├── mem.h
├── murmur3.h
├── old_pix_fmts.h
├── opencl.h
├── opt.h
├── parseutils.h
├── pixdesc.h
├── pixfmt.h
├── random_seed.h
├── rational.h
├── ripemd.h
├── samplefmt.h
├── sha.h
├── sha512.h
├── stereo3d.h
├── time.h
├── timecode.h
├── timestamp.h
├── version.h
└── xtea.h
0 directories, 57 files
---
"atomic.h"
We could show the directory of libavutil another and find it and "aarch64".
.
├── Makefile
├── aarch64
│ ├── Makefile
│ ├── asm.S
│ ├── bswap.h
│ ├── cpu.c
│ ├── cpu.h
│ ├── float_dsp_init.c
│ ├── float_dsp_neon.S
│ ├── neontest.h
│ └── timer.h
├── adler32.c
├── adler32.h
├── aes.c
├── aes.h
├── aes_ctr.c
├── aes_ctr.h
├── aes_internal.h
├── arm
│ ├── Makefile
│ ├── asm.S
│ ├── bswap.h
│ ├── cpu.c
│ ├── cpu.h
│ ├── float_dsp_arm.h
│ ├── float_dsp_init_arm.c
│ ├── float_dsp_init_neon.c
│ ├── float_dsp_init_vfp.c
│ ├── float_dsp_neon.S
│ ├── float_dsp_vfp.S
│ ├── intmath.h
│ ├── intreadwrite.h
│ ├── neontest.h
│ └── timer.h
├── atomic.c
├── atomic.h
├── atomic_gcc.h
├── atomic_suncc.h
├── atomic_win32.h
├── attributes.h
├── audio_fifo.c
├── audio_fifo.h
├── avassert.h
├── avr32
│ ├── bswap.h
│ └── intreadwrite.h
├── avstring.c
├── avstring.h
├── avutil.h
├── avutilres.rc
├── base64.c
├── base64.h
├── bfin
│ ├── bswap.h
│ └── timer.h
├── blowfish.c
├── blowfish.h
├── bprint.c
├── bprint.h
├── bswap.h
├── buffer.c
├── buffer.h
├── buffer_internal.h
├── camellia.c
├── camellia.h
├── cast5.c
├── cast5.h
├── channel_layout.c
├── channel_layout.h
├── color_utils.c
├── color_utils.h
├── colorspace.h
├── common.h
├── cpu.c
├── cpu.h
├── cpu_internal.h
├── crc.c
├── crc.h
├── des.c
├── des.h
├── dict.c
├── dict.h
├── display.c
├── display.h
├── downmix_info.c
├── downmix_info.h
├── dynarray.h
├── error.c
├── error.h
├── eval.c
├── eval.h
├── ffmath.h
├── fifo.c
├── fifo.h
├── file.c
├── file.h
├── file_open.c
├── fixed_dsp.c
├── fixed_dsp.h
├── float_dsp.c
├── float_dsp.h
├── frame.c
├── frame.h
├── hash.c
├── hash.h
├── hmac.c
├── hmac.h
├── hwcontext.c
├── hwcontext.h
├── hwcontext_cuda.c
├── hwcontext_cuda.h
├── hwcontext_cuda_internal.h
├── hwcontext_dxva2.c
├── hwcontext_dxva2.h
├── hwcontext_internal.h
├── hwcontext_qsv.c
├── hwcontext_qsv.h
├── hwcontext_vaapi.c
├── hwcontext_vaapi.h
├── hwcontext_vdpau.c
├── hwcontext_vdpau.h
├── imgutils.c
├── imgutils.h
├── integer.c
├── integer.h
├── internal.h
├── intfloat.h
├── intmath.c
├── intmath.h
├── intreadwrite.h
├── lfg.c
├── lfg.h
├── libavutil.txt
├── libavutil.v
├── libm.h
├── lls.c
├── lls.h
├── log.c
├── log.h
├── log2_tab.c
├── lzo.c
├── lzo.h
├── macros.h
├── mastering_display_metadata.c
├── mastering_display_metadata.h
├── mathematics.c
├── mathematics.h
├── md5.c
├── md5.h
├── mem.c
├── mem.h
├── mem_internal.h
├── mips
│ ├── Makefile
│ ├── asmdefs.h
│ ├── float_dsp_mips.c
│ ├── generic_macros_msa.h
│ ├── intreadwrite.h
│ ├── libm_mips.h
│ └── mmiutils.h
├── motion_vector.h
├── murmur3.c
├── murmur3.h
├── opencl.c
├── opencl.h
├── opencl_internal.c
├── opencl_internal.h
├── opt.c
├── opt.h
├── parseutils.c
├── parseutils.h
├── pca.c
├── pca.h
├── pixdesc.c
├── pixdesc.h
├── pixelutils.c
├── pixelutils.h
├── pixfmt.h
├── ppc
│ ├── Makefile
│ ├── cpu.c
│ ├── cpu.h
│ ├── float_dsp_altivec.c
│ ├── float_dsp_altivec.h
│ ├── float_dsp_init.c
│ ├── float_dsp_vsx.c
│ ├── float_dsp_vsx.h
│ ├── intreadwrite.h
│ ├── timer.h
│ ├── types_altivec.h
│ └── util_altivec.h
├── qsort.h
├── random_seed.c
├── random_seed.h
├── rational.c
├── rational.h
├── rc4.c
├── rc4.h
├── replaygain.h
├── reverse.c
├── reverse.h
├── ripemd.c
├── ripemd.h
├── samplefmt.c
├── samplefmt.h
├── sh4
│ └── bswap.h
├── sha.c
├── sha.h
├── sha512.c
├── sha512.h
├── softfloat.h
├── softfloat_ieee754.h
├── softfloat_tables.h
├── spherical.c
├── spherical.h
├── stereo3d.c
├── stereo3d.h
├── tablegen.h
├── tea.c
├── tea.h
├── tests
│ ├── adler32.c
│ ├── aes.c
│ ├── aes_ctr.c
│ ├── atomic.c
│ ├── audio_fifo.c
│ ├── avstring.c
│ ├── base64.c
│ ├── blowfish.c
│ ├── bprint.c
│ ├── camellia.c
│ ├── cast5.c
│ ├── color_utils.c
│ ├── cpu.c
│ ├── cpu_init.c
│ ├── crc.c
│ ├── des.c
│ ├── dict.c
│ ├── display.c
│ ├── error.c
│ ├── eval.c
│ ├── fifo.c
│ ├── file.c
│ ├── float_dsp.c
│ ├── hash.c
│ ├── hmac.c
│ ├── imgutils.c
│ ├── lfg.c
│ ├── lls.c
│ ├── log.c
│ ├── lzo.c
│ ├── md5.c
│ ├── murmur3.c
│ ├── opt.c
│ ├── parseutils.c
│ ├── pca.c
│ ├── pixdesc.c
│ ├── pixelutils.c
│ ├── random_seed.c
│ ├── rational.c
│ ├── ripemd.c
│ ├── sha.c
│ ├── sha512.c
│ ├── softfloat.c
│ ├── tea.c
│ ├── tree.c
│ ├── twofish.c
│ ├── utf8.c
│ └── xtea.c
├── thread.h
├── threadmessage.c
├── threadmessage.h
├── time.c
├── time.h
├── time_internal.h
├── timecode.c
├── timecode.h
├── timer.h
├── timestamp.h
├── tomi
│ └── intreadwrite.h
├── tree.c
├── tree.h
├── twofish.c
├── twofish.h
├── utils.c
├── version.h
├── wchar_filename.h
├── x86
│ ├── Makefile
│ ├── asm.h
│ ├── bswap.h
│ ├── cpu.c
│ ├── cpu.h
│ ├── cpuid.asm
│ ├── emms.asm
│ ├── emms.h
│ ├── fixed_dsp.asm
│ ├── fixed_dsp_init.c
│ ├── float_dsp.asm
│ ├── float_dsp_init.c
│ ├── intmath.h
│ ├── intreadwrite.h
│ ├── lls.asm
│ ├── lls_init.c
│ ├── pixelutils.asm
│ ├── pixelutils.h
│ ├── pixelutils_init.c
│ ├── timer.h
│ ├── w64xmmtest.h
│ ├── x86inc.asm
│ └── x86util.asm
├── xga_font_data.c
├── xga_font_data.h
├── xtea.c
└── xtea.h
10 directories, 307 files
コメント
コメントを投稿