Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -308,12 +308,6 @@ set_target_properties(acl_objs PROPERTIES
target_compile_features(acl_objs PRIVATE cxx_std_11)
# These compile_definitions need to be public, since we're building an OBJECT library (?)
target_compile_definitions(acl_objs PUBLIC
# Revert to old pre-C++11 ABI for std::string and std::list in libstdc++.
# This is needed for ABI compatibility with the Intel® FPGA Add-On for
# oneAPI Base Toolkit, particularly the simulation flow, which accesses
# the internal runtime API that exposes C++ structures and functions.
# https://gcc.gnu.org/onlinedocs/libstdc++/manual/using_dual_abi.html
_GLIBCXX_USE_CXX11_ABI=0
ACL_SUPPORT_DOUBLE=1
ACL_HAS_STDLIB_STDIO
CL_USE_DEPRECATED_OPENCL_1_0_APIS=1
Expand Down
1 change: 0 additions & 1 deletion fuzz_testing/test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ add_executable(acl_fuzz_test
set_target_properties(acl_fuzz_test PROPERTIES CXX_EXTENSIONS OFF)
target_compile_features(acl_fuzz_test PRIVATE cxx_std_11)
target_compile_definitions(acl_fuzz_test PRIVATE
_GLIBCXX_USE_CXX11_ABI=0
"ACL_TARGET_BIT=${ACL_TARGET_BIT}"
CL_USE_DEPRECATED_OPENCL_1_0_APIS=1
CL_USE_DEPRECATED_OPENCL_1_1_APIS=1
Expand Down
1 change: 0 additions & 1 deletion test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ add_executable(acl_test
set_target_properties(acl_test PROPERTIES CXX_EXTENSIONS OFF)
target_compile_features(acl_test PRIVATE cxx_std_11)
target_compile_definitions(acl_test PRIVATE
_GLIBCXX_USE_CXX11_ABI=0
"ACL_TARGET_BIT=${ACL_TARGET_BIT}"
CL_USE_DEPRECATED_OPENCL_1_0_APIS=1
CL_USE_DEPRECATED_OPENCL_1_1_APIS=1
Expand Down
Loading