Skip to content

Commit

Permalink
Fix pthread missing dep that occurs on cloudlab
Browse files Browse the repository at this point in the history
  • Loading branch information
marascoben committed Sep 9, 2024
1 parent e823acd commit 7356263
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 57 deletions.
1 change: 1 addition & 0 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ onvm_dpdk_shared_dep = onvm_dpdk.get_variable('dpdk_shared_lib_deps')
# ONVM dependencies
onvm_nflib_dep = []
onvm_math_dep = cc.find_library('m')
onvm_thread_dep = dependency('threads')

# Include directories to be used when building components and examples
onvm_includes = include_directories('onvm/',
Expand Down
2 changes: 1 addition & 1 deletion onvm/onvm_mgr/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ onvm_mgr_include = include_directories('.')
executable(onvm_mgr_app_name,
sources,
include_directories: [onvm_mgr_include, onvm_includes],
dependencies: [onvm_dpdk_shared_dep, libonvm_dep, libonvmhelper_dep, onvm_math_dep],
dependencies: [onvm_dpdk_shared_dep, onvm_thread_dep, libonvm_dep, libonvmhelper_dep, onvm_math_dep],
install: true,
install_tag: 'onvm',
install_dir: onvm_output_dir,
Expand Down
1 change: 1 addition & 0 deletions onvm/onvm_nflib/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ libonvm_includes = include_directories('.')

libonvm_deps = [
onvm_dpdk_shared_dep,
onvm_thread_dep,
libonvmhelper_dep
]

Expand Down
56 changes: 0 additions & 56 deletions scripts/setup_cloudlab.sh

This file was deleted.

0 comments on commit 7356263

Please sign in to comment.