Skip to content

Instantly share code, notes, and snippets.

@enp1s0
Last active July 17, 2024 06:41
Show Gist options
  • Save enp1s0/1630e2166c9dca875abe042a5154ac4f to your computer and use it in GitHub Desktop.
Save enp1s0/1630e2166c9dca875abe042a5154ac4f to your computer and use it in GitHub Desktop.

雑に使っているconfigureたち

Open MPI

../configure --with-cuda=$(realpath $(dirname $(which nvcc))/../) --prefix=

gcc

unset LIBRARY_PATH CPATH C_INCLUDE_PATH PKG_CONFIG_PATH CPLUS_INCLUDE_PATH INCLUDE  
./configure --enable-languages=c,c++,fortran --disable-bootstrap --disable-multilib --prefix=

vim

./configure \
	--with-features=huge  \
	--disable-darwin \
	--disable-selinux \
	--enable-multibyte \
	--enable-fail-if-missing \
	--enable-python3interp=yes \
	--with-python3-config-dir=/usr/lib64/python3.6/config-3.6m-x86_64-linux-gnu/ \
	--prefix=

clang

cmake -G "Unix Makefiles" ../llvm -DLLVM_ENABLE_PROJECTS="clang;clang-tools-extra" -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment