Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build system references bdcartifactory.amd.com #6

Open
KonstantinSeurer opened this issue Nov 11, 2023 · 1 comment
Open

Build system references bdcartifactory.amd.com #6

KonstantinSeurer opened this issue Nov 11, 2023 · 1 comment
Labels
bug Something isn't working

Comments

@KonstantinSeurer
Copy link

The server is not reachable. Disabling the code that tries to access it works around the issue:

diff --git a/cmake/devtools_qt_helper.cmake b/cmake/devtools_qt_helper.cmake
index 9acd785..2175dc6 100644
--- a/cmake/devtools_qt_helper.cmake
+++ b/cmake/devtools_qt_helper.cmake
@@ -6,23 +6,23 @@
 cmake_minimum_required(VERSION 3.10)
 
 # linuxdeployqt
-if (UNIX AND NOT APPLE)
-    include(FetchContent)
-    FetchContent_Declare(
-            linuxdeployqt
-            URL "http://bdcartifactory.amd.com/artifactory/DevToolsBDC/Assets/radeon_developer_panel/qt6/linuxdeployqt.zip"
-            SOURCE_DIR ${PROJECT_SOURCE_DIR}/external/linuxdeployqt
-            DOWNLOAD_EXTRACT_TIMESTAMP true
-    )
-    FetchContent_MakeAvailable(linuxdeployqt)
-
-    find_program(LINUXDEPLOYQT "linuxdeployqt" HINTS "${PROJECT_SOURCE_DIR}/external/linuxdeployqt")
-    if (LINUXDEPLOYQT)
-        message(STATUS "Found linuxdeployqt: ${LINUXDEPLOYQT}")
-    else ()
-        message(ERROR "linuxdeployqt not found but is required for build")
-    endif ()
-endif ()
+# if (UNIX AND NOT APPLE)
+#     include(FetchContent)
+#     FetchContent_Declare(
+#             linuxdeployqt
+#             URL "http://bdcartifactory.amd.com/artifactory/DevToolsBDC/Assets/radeon_developer_panel/qt6/linuxdeployqt.zip"
+#             SOURCE_DIR ${PROJECT_SOURCE_DIR}/external/linuxdeployqt
+#             DOWNLOAD_EXTRACT_TIMESTAMP true
+#     )
+#     FetchContent_MakeAvailable(linuxdeployqt)
+
+#     find_program(LINUXDEPLOYQT "linuxdeployqt" HINTS "${PROJECT_SOURCE_DIR}/external/linuxdeployqt")
+#     if (LINUXDEPLOYQT)
+#         message(STATUS "Found linuxdeployqt: ${LINUXDEPLOYQT}")
+#     else ()
+#         message(ERROR "linuxdeployqt not found but is required for build")
+#     endif ()
+# endif ()
 
 # Attempt to automatically find Qt on the local machine
 if (UNIX AND NOT APPLE)
@bpurnomo bpurnomo added the bug Something isn't working label Jan 4, 2024
@ahosier
Copy link
Collaborator

ahosier commented Jun 18, 2024

This was fixed prior to the last 1.5 release.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

3 participants