annotate src/usr/CMakeLists.txt @ 72:4051ad3e0958

fix build fs.img
author anatofuz
date Wed, 31 Jul 2019 18:59:59 +0900
parents 6ebe7043702c
children 624fe2ec975c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
58
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
1 cmake_minimum_required(VERSION 3.8)
59
8f435de13b91 fix cmakefiles
tobaru
parents: 58
diff changeset
2 set(CMAKE_C_COMPILER "/usr/bin/cc")
58
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
3 project(usr C ASM)
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
4
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
5
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
6 set(CMAKE_C_FLAGS_DEBUG "-O0")
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
7 add_definitions(${PMAKE_ARGS})
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
8 set(CMAKE_C_COMPILER "${CBC_COM}")
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
9
69
f236eba62a76 off-the-shelf cmakefile
anatofuz
parents: 65
diff changeset
10 #include_directories("..")
63
ab729eb8356b fix build usr command and fs.img
anatofuz
parents: 62
diff changeset
11 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ")
ab729eb8356b fix build usr command and fs.img
anatofuz
parents: 62
diff changeset
12 set(CMAKE_C_LINK_EXECUTABLE "${KERNEL_LINK_EXECUTABLE}")
62
a28580a75faa fix build fs.img
anatofuz
parents: 61
diff changeset
13 set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} ${GCC_LIB} -nostdlib")
58
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
14
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
15 macro( GearsCommand )
69
f236eba62a76 off-the-shelf cmakefile
anatofuz
parents: 65
diff changeset
16 include_directories(${CMAKE_SOURCE_DIR})
f236eba62a76 off-the-shelf cmakefile
anatofuz
parents: 65
diff changeset
17 include_directories(${CMAKE_SOURCE_DIR}/usr)
f236eba62a76 off-the-shelf cmakefile
anatofuz
parents: 65
diff changeset
18 include_directories(${CMAKE_BINARY_DIR}/usr/c)
f236eba62a76 off-the-shelf cmakefile
anatofuz
parents: 65
diff changeset
19
58
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
20 set( _OPTIONS_ARGS )
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
21 set( _ONE_VALUE_ARGS TARGET )
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
22 set( _MULTI_VALUE_ARGS SOURCES )
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
23 cmake_parse_arguments( _Gears "${_OPTIONS_ARGS}" "${_ONE_VALUE_ARGS}" "${_MULTI_VALUE_ARGS}" ${ARGN} )
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
24
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
25 set (_Gears_CBC_SOURCES)
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
26 set (_Gears_CSOURCES)
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
27 foreach(i ${_Gears_SOURCES})
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
28 if (${i} MATCHES "\\.cbc")
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
29 string(REGEX REPLACE "(.*).cbc" "c/\\1.c" j ${i})
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
30 add_custom_command (
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
31 OUTPUT ${j}
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
32 DEPENDS ${i}
69
f236eba62a76 off-the-shelf cmakefile
anatofuz
parents: 65
diff changeset
33 COMMAND "perl" "${CMAKE_SOURCE_DIR}/gearsTools/generate_stub.pl" "-o" ${j} ${i}
58
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
34 )
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
35 list(APPEND _Gears_CBC_SOURCES ${j})
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
36 elseif (${i} MATCHES "\\.cu")
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
37 string(REGEX REPLACE "(.*).cu" "c/\\1.ptx" j ${i})
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
38 add_custom_command (
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
39 OUTPUT ${j}
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
40 DEPENDS ${i}
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
41 COMMAND nvcc ${NVCCFLAG} -c -ptx -o ${j} ${i}
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
42 )
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
43 list(APPEND _Gears_CBC_SOURCES ${j})
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
44 else()
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
45 set(j ${i})
71
6ebe7043702c fix generated source at usr commands
anatofuz
parents: 69
diff changeset
46 file(COPY "${CMAKE_SOURCE_DIR}/context.h" DESTINATION "${CMAKE_BINARY_DIR}/usr/${_Gears_TARGET}.dir")
58
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
47 list(APPEND _Gears_CSOURCES ${j})
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
48 endif()
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
49 endforeach(i)
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
50
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
51 add_custom_command (
71
6ebe7043702c fix generated source at usr commands
anatofuz
parents: 69
diff changeset
52 OUTPUT ${_Gears_TARGET}.dir/c/${_Gears_TARGET}-context.c
58
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
53 DEPENDS ${_Gears_CBC_SOURCES}
71
6ebe7043702c fix generated source at usr commands
anatofuz
parents: 69
diff changeset
54 COMMAND "cd" "${_Gears_TARGET}.dir" ";" "perl" "${CMAKE_SOURCE_DIR}/gearsTools/generate_context.pl" "-o" ${_Gears_TARGET} ${CMAKE_SOURCE_DIR}/usr/${_Gears_CSOURCES}
58
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
55 )
71
6ebe7043702c fix generated source at usr commands
anatofuz
parents: 69
diff changeset
56 add_executable(${_Gears_TARGET} ${_Gears_CBC_SOURCES} ${_Gears_CSOURCES} ${_Gears_TARGET}.dir/c/${_Gears_TARGET}-context.c )
58
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
57 target_link_libraries(${_Gears_TARGET} ulib)
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
58 endmacro()
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
59
59
8f435de13b91 fix cmakefiles
tobaru
parents: 58
diff changeset
60 add_library(ulib STATIC ulib.c usys.S printf.c umalloc.c)
61
b3a3224e1823 fix link arguments...
anatofuz
parents: 60
diff changeset
61 #add_library(syslib string.c)
58
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
62
62
a28580a75faa fix build fs.img
anatofuz
parents: 61
diff changeset
63 set(USR_COMMANDS cat echo grep init kill ln ls mkdir rm sh stressfs usertests wc zombie hello)
58
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
64
59
8f435de13b91 fix cmakefiles
tobaru
parents: 58
diff changeset
65 foreach(cmd ${USR_COMMANDS})
8f435de13b91 fix cmakefiles
tobaru
parents: 58
diff changeset
66 GearsCommand (TARGET _${cmd} SOURCES ${cmd}.c)
8f435de13b91 fix cmakefiles
tobaru
parents: 58
diff changeset
67 endforeach(cmd)
58
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
68
63
ab729eb8356b fix build usr command and fs.img
anatofuz
parents: 62
diff changeset
69 set(_USR_COMMANDS)
ab729eb8356b fix build usr command and fs.img
anatofuz
parents: 62
diff changeset
70 foreach (i ${USR_COMMANDS})
ab729eb8356b fix build usr command and fs.img
anatofuz
parents: 62
diff changeset
71 list(APPEND _USR_COMMANDS "_${i}")
ab729eb8356b fix build usr command and fs.img
anatofuz
parents: 62
diff changeset
72 endforeach(i)
ab729eb8356b fix build usr command and fs.img
anatofuz
parents: 62
diff changeset
73
72
4051ad3e0958 fix build fs.img
anatofuz
parents: 71
diff changeset
74
4051ad3e0958 fix build fs.img
anatofuz
parents: 71
diff changeset
75 file(COPY "${CMAKE_SOURCE_DIR}/usr/UNIX" DESTINATION "${CMAKE_BINARY_DIR}/usr")
4051ad3e0958 fix build fs.img
anatofuz
parents: 71
diff changeset
76
63
ab729eb8356b fix build usr command and fs.img
anatofuz
parents: 62
diff changeset
77 add_custom_target(fs.img ALL
72
4051ad3e0958 fix build fs.img
anatofuz
parents: 71
diff changeset
78 COMMAND ${CMAKE_BINARY_DIR}/tools/mkfs fs.img ${_USR_COMMANDS} UNIX \; cp fs.img ${CMAKE_BINARY_DIR}
64
58c79e0c5101 fix depend mkfs
one
parents: 63
diff changeset
79 DEPENDS ${_USR_COMMANDS} mkfs
58
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
80 )