Skip to content

Commit

Permalink
objdump is not there in mac
Browse files Browse the repository at this point in the history
  • Loading branch information
costashatz committed Feb 6, 2024
1 parent d634863 commit 4ba32ba
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/ci_mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@ jobs:
CI_HOME: ${{github.workspace}}
steps:
- uses: actions/checkout@v2
- name: Install deps
run: brew install binutils
- name: Install DART
run: brew install dartsim
- name: Build Magnum
Expand Down
6 changes: 5 additions & 1 deletion wscript
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,11 @@ def configure_robot_dart(conf):
conf.get_env()['BUILD_MAGNUM'] = True
conf.env['magnum_libs'] = magnum.get_magnum_dependency_libs(conf, conf.env['magnum_dep_libs']) + magnum_integration.get_magnum_integration_dependency_libs(conf, 'Dart Eigen')

avx_dart = conf.check_avx(lib='dart', required=['dart', 'dart-utils', 'dart-utils-urdf'])
try:
avx_dart = conf.check_avx(lib='dart', required=['dart', 'dart-utils', 'dart-utils-urdf'])
except:
print("ERROR!")
avx_dart = False

native = ''
native_icc = ''
Expand Down

0 comments on commit 4ba32ba

Please sign in to comment.