Skip to content

Commit

Permalink
Updates for 2.7.1 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
AmitBM committed Apr 27, 2023
1 parent c3b899f commit 915481e
Show file tree
Hide file tree
Showing 74 changed files with 3,123 additions and 1,763 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
build/CMake
build/windows
build/win
build/linux
output
.vscode
Expand Down
5 changes: 4 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
cmake_minimum_required (VERSION 3.10)
project (RGA)

# Define C++ standard for RGA
set(CMAKE_CXX_STANDARD 17)

# Boolean option for enabling AMD Internal build mode
option(AMD_INTERNAL "Add -DAMD_INTERNAL=ON for AMD Internal build mode." OFF)

Expand Down Expand Up @@ -54,7 +57,7 @@ endif()
# Linux specific configurations
if(${CMAKE_SYSTEM_NAME} STREQUAL "Linux" OR ${CMAKE_SYSTEM_NAME} STREQUAL "Darwin")
# Compiler & linker configuration
add_definitions(-std=c++11 -fmessage-length=0 -Wno-unknown-pragmas -pthread)
add_definitions(-fmessage-length=0 -Wno-unknown-pragmas -pthread)
set(CMAKE_EXE_LINKER_FLAGS "-static-libstdc++ -static-libgcc ${CMAKE_EXE_LINKER_FLAGS}")

# Disable PIE (position-independent executable) to avoid link errors (gcc 6+ generates PIE by default).
Expand Down
2 changes: 1 addition & 1 deletion License.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2022 Advanced Micro Devices, Inc. All rights reserved.
Copyright (c) 2023 Advanced Micro Devices, Inc. All rights reserved.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 2 additions & 2 deletions build/dependency_map.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@
"adl_util" : ["Common/Src/ADLUtil", "master"],
"tsingleton" : ["Common/Src/TSingleton", "master"],
"common_src_miniz" : ["Common/Src/Miniz", "master"],
"device_info" : ["Common/Src/DeviceInfo", "5e6c83cc74e4588bdf44e1f3c74d419b46bb1a0c"],
"device_info" : ["Common/Src/DeviceInfo", "7f814f15a0896659af005498d9008fd627446ba0"],
"dynamic_library_module" : ["Common/Src/DynamicLibraryModule", "amd-rga-v2.7"],
"update_check_api" : ["Common/Src/update_check_api", "v2.1.0"],
# QtCommon.
# QtCommon.
"qt_common" : ["QtCommon", "rga-2.5"],
}

Loading

0 comments on commit 915481e

Please sign in to comment.