annotate src/usr/CMakeLists.txt @ 86:765449889623

fix translate interface routine
author anatofuz
date Tue, 15 Oct 2019 20:03:48 +0900
parents 624fe2ec975c
children add5e775339c
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})
86
765449889623 fix translate interface routine
anatofuz
parents: 75
diff changeset
46 file(COPY "${CMAKE_SOURCE_DIR}/origin-context.h" DESTINATION "${CMAKE_BINARY_DIR}/usr/${_Gears_TARGET}.dir")
765449889623 fix translate interface routine
anatofuz
parents: 75
diff changeset
47 file(RENAME "${CMAKE_BINARY_DIR}/usr/${_Gears_TARGET}.dir/origin-context.h" "${CMAKE_BINARY_DIR}/usr/${_Gears_TARGET}.dir/context.h")
58
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
48 list(APPEND _Gears_CSOURCES ${j})
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
49 endif()
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
50 endforeach(i)
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
51
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
52 add_custom_command (
71
6ebe7043702c fix generated source at usr commands
anatofuz
parents: 69
diff changeset
53 OUTPUT ${_Gears_TARGET}.dir/c/${_Gears_TARGET}-context.c
58
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
54 DEPENDS ${_Gears_CBC_SOURCES}
71
6ebe7043702c fix generated source at usr commands
anatofuz
parents: 69
diff changeset
55 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
56 )
71
6ebe7043702c fix generated source at usr commands
anatofuz
parents: 69
diff changeset
57 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
58 target_link_libraries(${_Gears_TARGET} ulib)
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
59 endmacro()
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
60
59
8f435de13b91 fix cmakefiles
tobaru
parents: 58
diff changeset
61 add_library(ulib STATIC ulib.c usys.S printf.c umalloc.c)
61
b3a3224e1823 fix link arguments...
anatofuz
parents: 60
diff changeset
62 #add_library(syslib string.c)
58
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
63
75
624fe2ec975c reduce user command to achive fs space
kono
parents: 72
diff changeset
64 # set(USR_COMMANDS cat echo grep init kill ln ls mkdir rm sh stressfs usertests wc zombie hello)
624fe2ec975c reduce user command to achive fs space
kono
parents: 72
diff changeset
65 set(USR_COMMANDS cat echo grep init kill ln ls mkdir rm sh hello)
58
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
66
59
8f435de13b91 fix cmakefiles
tobaru
parents: 58
diff changeset
67 foreach(cmd ${USR_COMMANDS})
8f435de13b91 fix cmakefiles
tobaru
parents: 58
diff changeset
68 GearsCommand (TARGET _${cmd} SOURCES ${cmd}.c)
8f435de13b91 fix cmakefiles
tobaru
parents: 58
diff changeset
69 endforeach(cmd)
58
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
70
63
ab729eb8356b fix build usr command and fs.img
anatofuz
parents: 62
diff changeset
71 set(_USR_COMMANDS)
ab729eb8356b fix build usr command and fs.img
anatofuz
parents: 62
diff changeset
72 foreach (i ${USR_COMMANDS})
ab729eb8356b fix build usr command and fs.img
anatofuz
parents: 62
diff changeset
73 list(APPEND _USR_COMMANDS "_${i}")
ab729eb8356b fix build usr command and fs.img
anatofuz
parents: 62
diff changeset
74 endforeach(i)
ab729eb8356b fix build usr command and fs.img
anatofuz
parents: 62
diff changeset
75
72
4051ad3e0958 fix build fs.img
anatofuz
parents: 71
diff changeset
76
4051ad3e0958 fix build fs.img
anatofuz
parents: 71
diff changeset
77 file(COPY "${CMAKE_SOURCE_DIR}/usr/UNIX" DESTINATION "${CMAKE_BINARY_DIR}/usr")
4051ad3e0958 fix build fs.img
anatofuz
parents: 71
diff changeset
78
63
ab729eb8356b fix build usr command and fs.img
anatofuz
parents: 62
diff changeset
79 add_custom_target(fs.img ALL
72
4051ad3e0958 fix build fs.img
anatofuz
parents: 71
diff changeset
80 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
81 DEPENDS ${_USR_COMMANDS} mkfs
58
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
82 )