Commit 5b3f9643 authored by Ramon Nou's avatar Ramon Nou
Browse files

Rnou/spack

parent a24911c1
Loading
Loading
Loading
Loading
+0 −10
Original line number Diff line number Diff line
@@ -109,16 +109,6 @@ class Gekkofs(CMakePackage):
        ]
        return args
    
    def patch(self):
        # For gekkofs, add the missing Argobots::Argobots.
        if self.spec.version == Version("0.9.4"):
            filter_file(
                r"PUBLIC dl",
                "PUBLIC dl Argobots::Argobots",
                "src/client/CMakeLists.txt"
            )
           

    def check(self):
        """Run tests"""
        with working_dir(self.build_directory):
+0 −15
Original line number Diff line number Diff line
@@ -32,19 +32,6 @@
# based on syscall interception.
# ##############################################################################

add_library(MySyscallHeaders INTERFACE)
add_library(MyArgobotsHeaders INTERFACE)

target_link_libraries(MySyscallHeaders
    INTERFACE
        Syscall_intercept::Syscall_intercept
)

target_link_libraries(MyArgobotsHeaders
    INTERFACE
        Argobots::Argobots
)


add_library(gkfs_common SHARED)
target_sources(gkfs_common
@@ -74,8 +61,6 @@ target_link_libraries(
    fmt::fmt
    Threads::Threads
    Microsoft.GSL::GSL
    MySyscallHeaders
    MyArgobotsHeaders
)

add_library(gkfs_intercept SHARED)