Skip to content

Commit

Permalink
rocky8
Browse files Browse the repository at this point in the history
  • Loading branch information
ssbandjl committed Sep 10, 2023
1 parent f2e0fcd commit db31c4e
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -72,3 +72,4 @@ xb/write
xb/write_file

next_gen
cache_tgz
1 change: 1 addition & 0 deletions build.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# scons --jobs 1 install PREFIX=/opt/daos TARGET_TYPE=debug
# rm -rf /root/project/stor/daos/main/daos/build/external/debug/argobots
# 删除缓存: rm -rf build .sconf_temp .sconsign.dblite
scons --jobs 32 install PREFIX=/opt/daos BUILD_TYPE=debug TARGET_TYPE=debug --build-deps=yes # for qemu: scons-3 --jobs 1 install PREFIX=/opt/daos BUILD_TYPE=debug TARGET_TYPE=debug --build-deps=yes
# scons --jobs 1 install PREFIX=/opt/daos BUILD_TYPE=debug TARGET_TYPE=debug --build-deps=yes --implicit-deps-changed --config=force
# scons --jobs 1 install PREFIX=/opt/daos BUILD_TYPE=debug TARGET_TYPE=debug --build-deps=no --implicit-deps-changed --config=force
4 changes: 4 additions & 0 deletions install_rocky8_log
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
./utils/scripts/helpers/repo-helper-el8.sh
./utils/scripts/install-el8.sh


6 changes: 3 additions & 3 deletions src/vos/tests/SConscript
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,18 @@ def scons():
tenv.AppendUnique(RPATH_FULL=['$PREFIX/lib64/daos_srv'])
tenv.Append(OBJPREFIX="b_")

vos_test_src = ['vos_tests.c', 'vos_tests_xb.c', 'vts_io.c', 'vts_pool.c', 'vts_container.c',
vos_test_src = ['vos_tests.c', 'vts_io.c', 'vts_pool.c', 'vts_container.c',
tenv.Object("vts_common.c"), 'vts_aggregate.c', 'vts_dtx.c',
'vts_gc.c', 'vts_checksum.c', 'vts_ilog.c', 'vts_array.c',
'vts_pm.c', 'vts_ts.c', 'vts_mvcc.c', 'vos_cmd.c', 'vts_wal.c',
'../../object/srv_csum.c', '../../object/srv_io_map.c']
vos_tests = tenv.d_program('vos_tests', vos_test_src, LIBS=libraries)
vos_tests_xb = tenv.d_program('vos_tests_xb', vos_test_src, LIBS=libraries)
# vos_tests_xb = tenv.d_program('vos_tests_xb', vos_test_src, LIBS=libraries)
tenv.AppendUnique(CPPPATH=[Dir('../../common/tests').srcnode()])
evt_ctl = tenv.d_program('evt_ctl', ['evt_ctl.c', utest_utils, cmd_parser], LIBS=libraries)

tenv.Install('$PREFIX/bin/', [vos_tests, evt_ctl])
tenv.Install('$PREFIX/bin/', [vos_tests_xb, evt_ctl])
# tenv.Install('$PREFIX/bin/', [vos_tests_xb, evt_ctl])
tenv.Install(conf_dir, ['vos_size_input.yaml'])

unit_env = tenv.Clone()
Expand Down
File renamed without changes.

0 comments on commit db31c4e

Please sign in to comment.