You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please check the FAQ documentation before raising an issue
Please check the FAQ documentation and old issues before raising an issue in case someone has asked the same question that you are asking.
Describe the bug (must be provided)
When trying to follow these instructions here, make does not find any rules.
Instructions:
cd nebula
$ mkdir build
$ cd build
$ cmake -DENABLE_TESTING=OFF -DCMAKE_BUILD_TYPE=Release ..
# Assuming cores is the number of cores and mem_gb is the memory size (in GB), the value of N is recommended to select the smaller one from cores and mem_gb / 2
# We suggest choosing release build type to speed up compilation
$ make -jN
# The default installation directory is /usr/local/nebula
$ sudo make install
except modified, so
cd nebula
cd build
cmake -DENABLE_TESTING=ON -DCMAKE_BUILD_TYPE=Debug -DENABLE_ASAN=ON ..
That command has output:
-- NEBULA_USE_LINKER: bfd
-- ENABLE_ASAN: ON
-- ENABLE_TESTING: ON
-- ENABLE_UBSAN: OFF
-- ENABLE_FUZZ_TEST: OFF
-- ENABLE_TSAN: OFF
-- ENABLE_STATIC_ASAN : OFF
-- ENABLE_STATIC_UBSAN : OFF
-- ENABLE_WERROR: ON
-- ENABLE_STRICT_ALIASING: OFF
-- ENABLE_PCH: OFF
-- ENABLE_FRAME_POINTER: ON
-- ENABLE_CCACHE: ON
-- CCACHE_DIR: /home/vscode/.ccache
-- CMAKE_BUILD_TYPE = Debug (Options are: Debug, Release, RelWithDebInfo, MinSizeRel)
-- CMAKE_INSTALL_PREFIX: /usr/local/nebula
-- Specified NEBULA_THIRDPARTY_ROOT: /workspaces/nebula-contribute2/nebula/build/third-party/install
-- CMAKE_INCLUDE_PATH: /workspaces/nebula-contribute2/nebula/build/third-party/install/include
-- CMAKE_LIBRARY_PATH: /workspaces/nebula-contribute2/nebula/build/third-party/install/lib64:/workspaces/nebula-contribute2/nebula/build/third-party/install/lib
-- CMAKE_PROGRAM_PATH: /workspaces/nebula-contribute2/nebula/build/third-party/install/bin
-- Mstch_INCLUDE_DIR = /workspaces/nebula-contribute2/nebula/build/third-party/install/include , Mstch_LIBRARY = /workspaces/nebula-contribute2/nebula/build/third-party/install/lib/libmstch.a
-- found krb5-config here /workspaces/nebula-contribute2/nebula/build/third-party/install/bin/krb5-config
-- Found kerberos 5 headers: /workspaces/nebula-contribute2/nebula/build/third-party/install/include
-- Found kerberos 5 libs: /workspaces/nebula-contribute2/nebula/build/third-party/install/lib/libgssapi_krb5.a;/workspaces/nebula-contribute2/nebula/build/third-party/install/lib/libkrb5.a;/workspaces/nebula-contribute2/nebula/build/third-party/install/lib/libk5crypto.a;/workspaces/nebula-contribute2/nebula/build/third-party/install/lib/libcom_err.a;/workspaces/nebula-contribute2/nebula/build/third-party/install/lib/libkrb5support.a
-- Glibc version is 2.31
-- Create the pre-commit hook
-- Creating pre-commit hook done
-- ENABLE_PACK_ONE: ON
-- is_one is ON
-- Configuring done
-- Generating done
-- Build files have been written to: /workspaces/nebula-contribute2/nebula/build
Then doing any of
make <clean>
make <install>
make <-j3>
make
gives make: *** No rule to make target '<command>'. Stop.
OS: Linux docker-desktop 4.19.76-linuxkit Parser framework #1 SMP Tue May 26 11:42:35 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux
Please check the FAQ documentation before raising an issue
Please check the FAQ documentation and old issues before raising an issue in case someone has asked the same question that you are asking.
Describe the bug (must be provided)
When trying to follow these instructions here, make does not find any rules.
Instructions:
except modified, so
That command has output:
Then doing any of
gives
make: *** No rule to make target '<command>'. Stop.
CPU op-mode(s): 32-bit, 64-bit
Byte Order: Little Endian
Address sizes: 39 bits physical, 48 bits virtual
CPU(s): 6
On-line CPU(s) list: 0-5
Thread(s) per core: 1
Core(s) per socket: 1
Socket(s): 6
Vendor ID: GenuineIntel
CPU family: 6
Model: 158
Model name: Intel(R) Core(TM) i7-9750H CPU @ 2.60GHz
Stepping: 10
CPU MHz: 2600.000
BogoMIPS: 5184.00
L1d cache: 192 KiB
L1i cache: 192 KiB
L2 cache: 1.5 MiB
L3 cache: 72 MiB
Vulnerability L1tf: Mitigation; PTE Inversion
Vulnerability Mds: Vulnerable: Clear CPU buffers attempted, no microcode; SMT Host state unknown
Vulnerability Meltdown: Mitigation; PTI
Vulnerability Spec store bypass: Vulnerable
Vulnerability Spectre v1: Mitigation; usercopy/swapgs barriers and __user pointer sanitization
Vulnerability Spectre v2: Mitigation; Full generic retpoline, STIBP disabled, RSB filling
Flags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht pbe syscall nx pdpe1gb lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid tsc_known_freq pni pclmulqdq
dtes64 ds_cpl ssse3 sdbg fma cx16 xtpr pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch pti fsgsbase bmi1 avx2 bmi2 erms xsaveopt arat
Steps to reproduce the behavior:
pwd #nebula/
cmake --build build -- -j3
The text was updated successfully, but these errors were encountered: