From bd53ae6c46b402b796254cb7082a3a4728b3b189 Mon Sep 17 00:00:00 2001 From: Stanislav Klimovich Date: Thu, 11 Dec 2025 01:39:32 +0000 Subject: [PATCH 1/5] Binary representation implemented (Task 1) --- .../CMakeLists.txt | 13 + .../build/Binary_representation | Bin 0 -> 20552 bytes .../build/CMakeCache.txt | 346 +++++++ .../CMakeFiles/3.28.3/CMakeCCompiler.cmake | 74 ++ .../3.28.3/CMakeDetermineCompilerABI_C.bin | Bin 0 -> 15968 bytes .../build/CMakeFiles/3.28.3/CMakeSystem.cmake | 15 + .../3.28.3/CompilerIdC/CMakeCCompilerId.c | 880 ++++++++++++++++++ .../build/CMakeFiles/3.28.3/CompilerIdC/a.out | Bin 0 -> 16088 bytes .../build/CMakeFiles/CMakeConfigureLog.yaml | 270 ++++++ .../CMakeDirectoryInformation.cmake | 16 + .../build/CMakeFiles/Makefile.cmake | 103 ++ .../build/CMakeFiles/Makefile2 | 112 +++ .../build/CMakeFiles/TargetDirectories.txt | 3 + .../binary_converter.dir/DependInfo.cmake | 24 + .../binary_converter.dir/build.make | 126 +++ .../binary_converter.dir/cmake_clean.cmake | 13 + .../binary_converter.dir/compiler_depend.make | 2 + .../binary_converter.dir/compiler_depend.ts | 2 + .../binary_converter.dir/depend.make | 2 + .../binary_converter.dir/flags.make | 10 + .../CMakeFiles/binary_converter.dir/link.txt | 1 + .../binary_converter.dir/progress.make | 4 + .../src/Task_1/binary.c.o | Bin 0 -> 4952 bytes .../src/Task_1/binary.c.o.d | 36 + .../binary_converter.dir/src/Task_1/main.c.o | Bin 0 -> 5592 bytes .../src/Task_1/main.c.o.d | 42 + .../build/CMakeFiles/cmake.check_cache | 1 + .../build/CMakeFiles/progress.marks | 1 + .../build/Makefile | 208 +++++ .../build/cmake_install.cmake | 54 ++ .../src/Task_1/binary.c | 263 ++++++ .../src/Task_1/binary.h | 14 + .../src/Task_1/main.c | 140 +++ 33 files changed, 2775 insertions(+) create mode 100644 12.Internal-data-representation/CMakeLists.txt create mode 100755 12.Internal-data-representation/build/Binary_representation create mode 100644 12.Internal-data-representation/build/CMakeCache.txt create mode 100644 12.Internal-data-representation/build/CMakeFiles/3.28.3/CMakeCCompiler.cmake create mode 100755 12.Internal-data-representation/build/CMakeFiles/3.28.3/CMakeDetermineCompilerABI_C.bin create mode 100644 12.Internal-data-representation/build/CMakeFiles/3.28.3/CMakeSystem.cmake create mode 100644 12.Internal-data-representation/build/CMakeFiles/3.28.3/CompilerIdC/CMakeCCompilerId.c create mode 100755 12.Internal-data-representation/build/CMakeFiles/3.28.3/CompilerIdC/a.out create mode 100644 12.Internal-data-representation/build/CMakeFiles/CMakeConfigureLog.yaml create mode 100644 12.Internal-data-representation/build/CMakeFiles/CMakeDirectoryInformation.cmake create mode 100644 12.Internal-data-representation/build/CMakeFiles/Makefile.cmake create mode 100644 12.Internal-data-representation/build/CMakeFiles/Makefile2 create mode 100644 12.Internal-data-representation/build/CMakeFiles/TargetDirectories.txt create mode 100644 12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/DependInfo.cmake create mode 100644 12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/build.make create mode 100644 12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/cmake_clean.cmake create mode 100644 12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/compiler_depend.make create mode 100644 12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/compiler_depend.ts create mode 100644 12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/depend.make create mode 100644 12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/flags.make create mode 100644 12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/link.txt create mode 100644 12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/progress.make create mode 100644 12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/src/Task_1/binary.c.o create mode 100644 12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/src/Task_1/binary.c.o.d create mode 100644 12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/src/Task_1/main.c.o create mode 100644 12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/src/Task_1/main.c.o.d create mode 100644 12.Internal-data-representation/build/CMakeFiles/cmake.check_cache create mode 100644 12.Internal-data-representation/build/CMakeFiles/progress.marks create mode 100644 12.Internal-data-representation/build/Makefile create mode 100644 12.Internal-data-representation/build/cmake_install.cmake create mode 100644 12.Internal-data-representation/src/Task_1/binary.c create mode 100644 12.Internal-data-representation/src/Task_1/binary.h create mode 100644 12.Internal-data-representation/src/Task_1/main.c diff --git a/12.Internal-data-representation/CMakeLists.txt b/12.Internal-data-representation/CMakeLists.txt new file mode 100644 index 0000000..b1699e1 --- /dev/null +++ b/12.Internal-data-representation/CMakeLists.txt @@ -0,0 +1,13 @@ +cmake_minimum_required(VERSION 3.10) +project("12.Internal-data-representation" C) + +set(CMAKE_C_STANDARD 11) +set(CMAKE_C_STANDARD_REQUIRED ON) + +add_executable(binary_converter + src/Task_1/main.c + src/Task_1/binary.c +) + +target_include_directories(binary_converter PRIVATE src/Task_1) +set_target_properties(binary_converter PROPERTIES OUTPUT_NAME "Binary_representation") \ No newline at end of file diff --git a/12.Internal-data-representation/build/Binary_representation b/12.Internal-data-representation/build/Binary_representation new file mode 100755 index 0000000000000000000000000000000000000000..1b33a734a1d0c3a63c276ce088a75ede020bf854 GIT binary patch literal 20552 zcmeHPeUwzim9HK^F(NZ47{m`+gsd!~9X=!|nK*nreCz=s!fayvXqxFBrsI62r$@o% zW1#7kcOHa^fe3pz8_1GX6SEl!=%@_LVB(-B>%Qi2vKZOTL@}qwp3TA4)zKyN{%%#> zH{FjJ<7TtF`J-!2zgzd#{i<8H>ecJ%R~wDR3yXX{!DWc}l91RaMJd+}TTSK=qFl@t zSKvBc+#oIic_=>Ry4ed)7pVq@!!_R!K$06vl>y*&iYyqihXhG(u(Iz`)xuDeD4gVm zQB~t!nACKJ-0s>dReFR6j?f)qm@7xIX(>~3ElcuYvyMxPhAc-Y$?el}`?MUxb2<@CxB%VsG(UU;7(3x;g(%aEhE zeA=RiQ{1iX4K@x9I{plGc*QL>(N(i%-cl2uS`)2nS~GRc>{(N1%?vcw2c}CG$S*%W zlv8)!RUx3JgJ?R8qNrKntdH78>vrP*!9QPp>Vc()_gsJD=Eu`Ny!p|YkMG_}JmfdY z5Dyj7$0wK@`S z6pit4v`#cMp&AS}#zU141}m!{3|57rHAJnf4#mI|tBKU19jQ`DOtE;dHUzO?uyRc( zSQV`c)kGhOh=y3SE?y;wi}GidxO4HMdGmwQ12f&)jQ;BMz^x*YTbG)6u4q3vscoG7ECQ4Hx& z5!SRr-}(;HYlx`Rc+aooD~{bILXub941(}#QF%=qc0N+0ENZk~7N z(0NV~XF7)thum^5hyEFtDnwrno#qV}9(S6*G;g>(sre~CC^sy?&fFPCbvgcy`hQuvS$(9-DX4pPh8!OZoT*9{jf+{5Kx_Up@FQ z^6+W@w#Z67U|MgQiL>XHtuUr_Onb%LUiK=y%8vO7Sl_P-6p!Bm6am^^_Btr$_F*Rp z+}0N#gV244>ImIs+3w=;&BXVThTwln^56PB0+TP8);Y8Dw|AJGeM3y&%Vz3Ad^8k9 zw1VN;Zq;v=r~WsW)uLH6O{p*wW%HM+CwMZEOi;_X&va$N7s|$uJj)0J4Sox^hVUsF!l!3(5%p? zM!(_meT5qAF&+5M!rX2&9}P>jUFjWCz-T6|%Tc$Ir+$~sb|sJC3Ko%BY0J8~yZG4! z!TO<3#CA1FHO559X6+omg`Y`So#aZXW!rV z%1gXzS?hbPrgWFlN4J{9`d-mA%r^Qm6S|D^Ac)LJV8uT+(w5PeFwXmIcilUn z-k+;Ovr7e&+elYtif#0om5v!bxw@*V%Iti{Z>2gvD%xY6nCw_aFKLtPr=hc77pbtkJKx7lTfk%|$vl=1T(!1hYa{$p4IiGil1I?gm1N_YTd*P$bGOerZcDPc8|!E{ zXsRWZRx%0M=u5N{yJ$L*8OQ8cWr>~ormIsj6oyIDwn=^ljxs1A8I!Pwk(KLoh zT8$ipKVu@6SmI0c`I@k*E7?4IM8a}JK-=4kwVa4>rz?2^HF7NTb*#0h!!mbHGC5dJ zK*r*MtL1d|jqgm4_Z?5X>6?sjC2#B>W*pljwr^dY~#r}#?u=v2ec$H zbD3>Ct*W*pBszTLYvLWBX;rkDyUp#R=}UjnMoW~5q%nQYQL4W{RP)0R%m+J4Osmt} z^lNbrLyc|oCG(a=HyfT_2kKT$s|clq=%cn zZZk0)8&80aA!cW~$iy(4meDbQdnf*M+`}%EVw~tG>W|*(f!#Zn6TJ`rkD}MzWi-=x zWj<%x2xUdHS$VQ+XbX`*aPkNVqZ#?wJV$nD!#}BxS;iKfWyaRbJ@%5VW@TsY#5~^l zaS>)@-+0VMhbE?jiP>qrD$Om~VphIljoxY-5F2dnZB5i}!M$~>*tnlfZqtcuw2;Y` zPjAw(muzE`5F5;7OQLogOt!#em$8$A!K3K2jNR%0CVR99@~Kb?5hz5U5P?Dj3K1wopb&vV1PT!-M4%9XLIesCC`90YBLejMP%33* zWqxO;bI>{Jw51+(+5r#yonxtH=dg1qwJEjPX+`6Uz}lTQG!Z|^Igb$oWHy5c!M4;U za2@qKM^l^qrG7LW^-n9EK7(p6rglK3b66@RONX3RzjKh9T)QdTc^)*_I7I46|G^v! zlC`zpQ0wRYa4z8-!5?(JKxXl2PT8rXAFjH6I0(vC^x-hvB7Y$FD6u-vq-=8PD7;HZ z|2L<$`O%G}t2mYLItlJ0g9k@`ed7Er%(Xesz@^rJ-_r|e_{G#V@>lgfw@cJJ6{F{r z5jcquyqF&k3UX}I8|hq5Psq_5H%tQzwKOZ7C)}YWL-~XD zd*X3Bypm2q75v&y3F18KrV^CN1j7)ZqixO$|4sEOF8T59_ZBK?Y`0-J4(m*O1_^Tr zqrDk+(RfJ4=~<^WMMFPr8ii3w!9_#{KFI+)$T zfc_(tk}~7l<*fP%hCH=}a+FdQid#R)e>p$g42LtAGO2Hp&5OH5UjNDU?4r?j)AXWY z&rK7`ll=TuDR&sL*nyz+uTky{II7~gRsdQ! zG306irCf4n)J21dR$6$UgAbItND>-yEN3#cXeGvafb|1Qfb;z4k&k(cWUl5T;B42~ zkNHI_67r97^`J~gH7DR-&iuJO*Ei}tt)r}qnzTtYlqCCcXtSJ zUe9LfKMv);RR6PH2Iv591zZET=MDUD322jX0vg?Ti?!R z<@e#>rFUqk_#U}i_|}y8t{rjd@D}h8{W^R~q5E^hu;9`X0u%9>iO+2K(m;ffB@0K6 z{fpwuA0FN;?ihF5pU;>$fyg9Jem8?p3K9{8=y813fW8ut3+dg4&r`7XEPhuZjFBaO zT{QoSOU%TOA>SVguM{WwbO@g>{3@GWKqTh-E5$Q54JlVN!h~yz1V-bTE{3LHOpvyDF?;{33NV7rT^Hw(duGiP@eqX^>D1`_VB2b7x zAp-wT5#aae_`Nw=&Z*G5dQ?Uz;J&y=?_p9|N; zw1)g{+-Egjq6ti&tsP;%PisDYCy?#qr-rgHAATPr`-iwn5`M`f@jl%@{3o5;r5yfc zE%9IK_K!5q{m|a=2Z90H{-FOw?K>Rd* zMWRHM>i0-ByYOrJN)LU8rt|z^{za(xko{wqDGJXkddu1;t`6 z=^vtUCHi}xULfQ?610&B)IjfHPZ)$wzlQd+(j0gxCc2+iCmnxox>xEc5#PO9QRE&O z)sUn!S3it_KG1vHTR<;?etxf)C2Z1DG|F8cnf|Ro^dA_6eryo>Nl7meZ)yMK9v(*i zMbmH53z*!ygZ|zidWIoB<+Bg?muq@b-*Dt}2I!Tblb>Ea^`QIF?kyJR z6TC#=2SC5F2zNiYnpc)r#^Tcg^>{Bnv?>~mhgJ&^8skk>Re?&;{|~2MdBTp2te(0>GbDI1?bY7L{Od;oWnW7(wH%1wp*Tzu=y`<}O(@A7q^S z5Hw8PYA(221n*qDbl%*>!KDiqE;m*LSInKa*a)IymC;)GAB!}^B8_k-6pz-+0}JSA zf^t4#KprOGJ)gjB#i;|IbkaaW{lk%%JOja%Abs*^ggifLIy~mijd##IYGf~ zoT<-7a0#RzXDY0YS0jXR9WHMttL<{CO1i8Y8oU41+fSY6i?Xo%G}L}Kx^IiyuhQJh8+4QtZed5fk}woCTv zP-C?SgxA)=go5#yYI!IUYoyGOY#IroEf%Q>k$|o>)Wk(Vx*0$7RT?9eA`p+P z0ZQo)?s_@afk?GZ`06mUF{X5=%vTazhpA9)6v~u1LM{TBa|5L0inGmmKj+FJ3mJ^yZdFv={TEQdG9$o6PZy%UYD6n`;%OG-XAga zGoyxH`LBSEpS{zvDhu!58Q!evynpBYuqKNTDs(;u%k%!8A$@;Dg?ywc%kw@v3L0(c zSe~C381nN0SY+|W{~Msv-karlzs-=JTiAc*W4HnGw3la`_wx+PrPYi5*JQCB6^bd# z^YaBme!gJ)-u^$X<>zUI{Jg@jMbk;1V&;|K4;saU^}F{ueZS-9IIzg#9sj+c=F0oE z9K!}J$3Qo`W}fiKw`c~2%s-fXt4DsH7GSuN1vO-S44?PN^L~WkL&ff~Sqd@B^YhT|G7wRiPhtHy(|?Bs3K7fm^9Y|~ zc24_G>jxE<<8k~UXvD(u{QW@79mFj}g97fA3Q*bXaTImSmom}qRD z_p2r4io+}K#YbuTrL0gxmY?FGldn{AA?J>2QP=Wv1)Fuk;59%&&yMUrufOzM&AuxM eb?sQ7;14{?*)H?ac77oFuivRS#(4xhsQ530w_cV2 literal 0 HcmV?d00001 diff --git a/12.Internal-data-representation/build/CMakeCache.txt b/12.Internal-data-representation/build/CMakeCache.txt new file mode 100644 index 0000000..74023a2 --- /dev/null +++ b/12.Internal-data-representation/build/CMakeCache.txt @@ -0,0 +1,346 @@ +# This is the CMakeCache file. +# For build in directory: /home/Monreale/git/C/12.Internal-data-representation/build +# It was generated by CMake: /usr/bin/cmake +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//Value Computed by CMake +12.Internal-data-representation_BINARY_DIR:STATIC=/home/Monreale/git/C/12.Internal-data-representation/build + +//Value Computed by CMake +12.Internal-data-representation_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +12.Internal-data-representation_SOURCE_DIR:STATIC=/home/Monreale/git/C/12.Internal-data-representation + +//Value Computed by CMake +Binary_BINARY_DIR:STATIC=/home/Monreale/git/C/12.Internal-data-representation/build + +//Value Computed by CMake +Binary_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +Binary_SOURCE_DIR:STATIC=/home/Monreale/git/C/12.Internal-data-representation + +//Path to a program. +CMAKE_ADDR2LINE:FILEPATH=/usr/bin/addr2line + +//Path to a program. +CMAKE_AR:FILEPATH=/usr/bin/ar + +//Choose the type of build, options are: None Debug Release RelWithDebInfo +// MinSizeRel ... +CMAKE_BUILD_TYPE:STRING= + +//Enable/Disable color output during build. +CMAKE_COLOR_MAKEFILE:BOOL=ON + +//C compiler +CMAKE_C_COMPILER:FILEPATH=/usr/bin/cc + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-13 + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-13 + +//Flags used by the C compiler during all build types. +CMAKE_C_FLAGS:STRING= + +//Flags used by the C compiler during DEBUG builds. +CMAKE_C_FLAGS_DEBUG:STRING=-g + +//Flags used by the C compiler during MINSIZEREL builds. +CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the C compiler during RELEASE builds. +CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the C compiler during RELWITHDEBINFO builds. +CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Path to a program. +CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND + +//Flags used by the linker during all build types. +CMAKE_EXE_LINKER_FLAGS:STRING= + +//Flags used by the linker during DEBUG builds. +CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during MINSIZEREL builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during RELEASE builds. +CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during RELWITHDEBINFO builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Enable/Disable output of compile commands during generation. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL= + +//Value Computed by CMake. +CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=/home/Monreale/git/C/12.Internal-data-representation/build/CMakeFiles/pkgRedirects + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=/usr/local + +//Path to a program. +CMAKE_LINKER:FILEPATH=/usr/bin/ld + +//Path to a program. +CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/gmake + +//Flags used by the linker during the creation of modules during +// all build types. +CMAKE_MODULE_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of modules during +// DEBUG builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of modules during +// MINSIZEREL builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of modules during +// RELEASE builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of modules during +// RELWITHDEBINFO builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_NM:FILEPATH=/usr/bin/nm + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=/usr/bin/objcopy + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump + +//Value Computed by CMake +CMAKE_PROJECT_DESCRIPTION:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_HOMEPAGE_URL:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=12.Internal-data-representation + +//Path to a program. +CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib + +//Path to a program. +CMAKE_READELF:FILEPATH=/usr/bin/readelf + +//Flags used by the linker during the creation of shared libraries +// during all build types. +CMAKE_SHARED_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of shared libraries +// during DEBUG builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of shared libraries +// during MINSIZEREL builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELEASE builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELWITHDEBINFO builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//Flags used by the linker during the creation of static libraries +// during all build types. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of static libraries +// during DEBUG builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of static libraries +// during MINSIZEREL builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELEASE builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELWITHDEBINFO builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_STRIP:FILEPATH=/usr/bin/strip + +//Path to a program. +CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND + +//If this value is on, makefiles will be generated without the +// .SILENT directive, and all commands will be echoed to the console +// during the make. This is useful for debugging only. With Visual +// Studio IDE projects all commands are done without /nologo. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + + +######################## +# INTERNAL cache entries +######################## + +//ADVANCED property for variable: CMAKE_ADDR2LINE +CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_AR +CMAKE_AR-ADVANCED:INTERNAL=1 +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=/home/Monreale/git/C/12.Internal-data-representation/build +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=28 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=3 +//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE +CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=/usr/bin/cmake +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=/usr/bin/cpack +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=/usr/bin/ctest +//ADVANCED property for variable: CMAKE_C_COMPILER +CMAKE_C_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_AR +CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB +CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS +CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG +CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL +CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE +CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO +CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_DLLTOOL +CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS +CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG +CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE +CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS +CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Unix Makefiles +//Generator instance identifier. +CMAKE_GENERATOR_INSTANCE:INTERNAL= +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=/home/Monreale/git/C/12.Internal-data-representation +//Install .so files without execute permission. +CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1 +//ADVANCED property for variable: CMAKE_LINKER +CMAKE_LINKER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MAKE_PROGRAM +CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS +CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG +CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE +CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_NM +CMAKE_NM-ADVANCED:INTERNAL=1 +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJCOPY +CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJDUMP +CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RANLIB +CMAKE_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_READELF +CMAKE_READELF-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=/usr/share/cmake-3.28 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS +CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG +CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE +CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS +CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG +CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE +CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STRIP +CMAKE_STRIP-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_TAPI +CMAKE_TAPI-ADVANCED:INTERNAL=1 +//uname command +CMAKE_UNAME:INTERNAL=/usr/bin/uname +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//linker supports push/pop state +_CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED:INTERNAL=FALSE + diff --git a/12.Internal-data-representation/build/CMakeFiles/3.28.3/CMakeCCompiler.cmake b/12.Internal-data-representation/build/CMakeFiles/3.28.3/CMakeCCompiler.cmake new file mode 100644 index 0000000..3766fe1 --- /dev/null +++ b/12.Internal-data-representation/build/CMakeFiles/3.28.3/CMakeCCompiler.cmake @@ -0,0 +1,74 @@ +set(CMAKE_C_COMPILER "/usr/bin/cc") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "GNU") +set(CMAKE_C_COMPILER_VERSION "13.3.0") +set(CMAKE_C_COMPILER_VERSION_INTERNAL "") +set(CMAKE_C_COMPILER_WRAPPER "") +set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17") +set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23") +set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") +set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") +set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") +set(CMAKE_C17_COMPILE_FEATURES "c_std_17") +set(CMAKE_C23_COMPILE_FEATURES "c_std_23") + +set(CMAKE_C_PLATFORM_ID "Linux") +set(CMAKE_C_SIMULATE_ID "") +set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU") +set(CMAKE_C_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "/usr/bin/ar") +set(CMAKE_C_COMPILER_AR "/usr/bin/gcc-ar-13") +set(CMAKE_RANLIB "/usr/bin/ranlib") +set(CMAKE_C_COMPILER_RANLIB "/usr/bin/gcc-ranlib-13") +set(CMAKE_LINKER "/usr/bin/ld") +set(CMAKE_MT "") +set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") +set(CMAKE_COMPILER_IS_GNUCC 1) +set(CMAKE_C_COMPILER_LOADED 1) +set(CMAKE_C_COMPILER_WORKS TRUE) +set(CMAKE_C_ABI_COMPILED TRUE) + +set(CMAKE_C_COMPILER_ENV_VAR "CC") + +set(CMAKE_C_COMPILER_ID_RUN 1) +set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) +set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_C_LINKER_PREFERENCE 10) +set(CMAKE_C_LINKER_DEPFILE_SUPPORTED TRUE) + +# Save compiler ABI information. +set(CMAKE_C_SIZEOF_DATA_PTR "8") +set(CMAKE_C_COMPILER_ABI "ELF") +set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_C_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") + +if(CMAKE_C_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_C_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") +endif() + +if(CMAKE_C_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") +endif() + +set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/13/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/usr/include") +set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;gcc_s;c;gcc;gcc_s") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/13;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/12.Internal-data-representation/build/CMakeFiles/3.28.3/CMakeDetermineCompilerABI_C.bin b/12.Internal-data-representation/build/CMakeFiles/3.28.3/CMakeDetermineCompilerABI_C.bin new file mode 100755 index 0000000000000000000000000000000000000000..0e5f034156adf9d6d795b655cc52140f256663af GIT binary patch literal 15968 zcmeHOYit}>6~4Q9x#ZzZnh=w;&6YN8Lh;y19Fqo_tYfb;iyS8;8xW*nGV2}NBlcl- zXIr~K2nvr{AyufVLXnU{RRI!zQVEeC6~$Fh5r|iQP=XLr8mJURXkF1FQ_?Kw%st;` zJgi$(_<_V+%X{wm&iU@SbLP(Ootb+-n;sm9$6^X)f%<@AEtSwnN({;ONrgm8?NH0< z^Hz0>T1@&vAJg`f7G%}sVtlS_5qtqj=CyI9iM&O_6hRmCkR|ixD>I9<1yadzFwZxM z4jl3+2>=Pa5icnbLozEo$RLk%Gt;hlGd*)uPKPccrzIXF^2s^j z{~eOguL|Fm?yinPzP;dWd)_Sm*s?Ck%`Wlv|9JpV%5t*;;JxNrGu*^ayKy39V@Z|1NM7j6$jgmtcS zO!m?F_#D+_Y?Hj;{G#Xs^L#LGRTEnuVaX=AH4k2z2fvx{cQm-0#+;b|&f^DVHh{}lB21Bt zG7x1T%0QHXC<9Rjq6|bC_&?6TUt4c`-8^x%#XPy_w;f8EUzqmd^>l>dTZKQQWzw-4hf5}W;__#TB**x*bnf=-Hmgy}&F;DgUlp3h7 zsgmofBS!0n&-?8W{x~7#sYQ>lxOdiDL!m#+bqak`{Zi|OB6(|Mnb<&DYJT z8S~kfcA3x4E-+)ynHR2mtEqvF(m+f7lI|Dy+~4CpY*w{<4w)x<;#@VSUi6lkCwmr? za%FS9UcZv3kLMP>L3iD;BgAdQXa1iaAR|`}5pU`k+@$ANt{%E;diQBVh%iGdYuA8cLvK+AEpYu&x?*>09prk^aqF{AbgYNu`z0>0 zzjnP|X8o)zV#M0SF}~rWqSv%4by4i^(6D+)y?cF9i{Qgnb{iQtl&~?%EVsd)HeZ%fE>DJUgz8N{5zl)B3N%Q|bf%W14VT)Lo zx~H#iXL8e_T&?8Ql3TVJ+lD>AN~AP`anGx)WAwBD<5gRg`ZQHI zF0L2gJPu>(W`*$&{M%G%*8it{|Aa~2?m!CJt8lx56 z`)?P=fN0jAr7`xWt0pvVRuit&%Eo$pG;_D_|4xPL33w0T&DN2BjPN9!0`f5*U#nCq z08;gS!dI$-kHBC)C=;`2y=U zQ^EDTf-}cTM@vBm4)pHzpE_E!IiUZeL%n-5eFW1k3oC7k)$Bi@tUZJKcJ~fi`vwLM zrn6SIcQ-w(B*)O+g%q|Zyv4Qzzw3dgr^<5jwr49pN7O7UdeZ_ab9XRU`D)o3vrBp2 z-H_QwUU|1<)v8XO8Y$6-m8({TE88h(M+84u59%%-wX+I1b)w;hzoKcvPJ% zdUlSaSJ83|HMd0jF2GzB~=+T#)~v`1DD&|uJZhdF5$*g_V9i;%#RR&eS_r= zQg{wSm$hH!+t(%L#ykspH&ufC@cu4-9v&?Cz5~X;n?XK)w;_{o6dC4!gz&%790>i# zyblubG4I2?3(eY8;W;1pm={8x7Dw(Q=MH?#=Ul>gssTRcnUMT@9xUPff0B$m#{(bp zI!Mfy(SP_s9wR=_8KGm|2-zvY!~I8}PEmz(3O?qskkjIb_~GOKD%ts%U~l{`$nOK@ z@6wDP3w4&?p#LC0DLhC~8x-h}PlWiLVt|An8h{S@-4H(|2FQHqgn@_lo(l0XZ-B)8 z4gAC7_nh#Nf0YzZkq?UsAuv?+L#lBX!9Ohyko>MISijZ^eGdus?LjKM=Pyz{fm!ww*vK@YC829r(*+;IW7Jjd`b`8Pj}lRCxSz z0T1W#TZFL-_?U-Icd)loDgX1v2l$Y)WD4>dgig&t9JBx)^y^e%4Dm5PO9(&gFNXuV zT0j6};@-f)zo&ud3iv^Zu@iJnNrT^!j`4NOb7%Ai-+z3+g}w**SNKMW%H~kxh^wtU S7jDj9$v-SqmW2o*Rs9o9p%N7U literal 0 HcmV?d00001 diff --git a/12.Internal-data-representation/build/CMakeFiles/3.28.3/CMakeSystem.cmake b/12.Internal-data-representation/build/CMakeFiles/3.28.3/CMakeSystem.cmake new file mode 100644 index 0000000..6c21a52 --- /dev/null +++ b/12.Internal-data-representation/build/CMakeFiles/3.28.3/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Linux-6.14.0-36-generic") +set(CMAKE_HOST_SYSTEM_NAME "Linux") +set(CMAKE_HOST_SYSTEM_VERSION "6.14.0-36-generic") +set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") + + + +set(CMAKE_SYSTEM "Linux-6.14.0-36-generic") +set(CMAKE_SYSTEM_NAME "Linux") +set(CMAKE_SYSTEM_VERSION "6.14.0-36-generic") +set(CMAKE_SYSTEM_PROCESSOR "x86_64") + +set(CMAKE_CROSSCOMPILING "FALSE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/12.Internal-data-representation/build/CMakeFiles/3.28.3/CompilerIdC/CMakeCCompilerId.c b/12.Internal-data-representation/build/CMakeFiles/3.28.3/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 0000000..0a0ec9b --- /dev/null +++ b/12.Internal-data-representation/build/CMakeFiles/3.28.3/CompilerIdC/CMakeCCompilerId.c @@ -0,0 +1,880 @@ +#ifdef __cplusplus +# error "A C++ compiler has been selected for C." +#endif + +#if defined(__18CXX) +# define ID_VOID_MAIN +#endif +#if defined(__CLASSIC_C__) +/* cv-qualifiers did not exist in K&R C */ +# define const +# define volatile +#endif + +#if !defined(__has_include) +/* If the compiler does not have __has_include, pretend the answer is + always no. */ +# define __has_include(x) 0 +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, + except that a few beta releases use the old format with V=2021. */ +# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) + /* The third version component from --version is an update index, + but no macro is provided for it. */ +# define COMPILER_VERSION_PATCH DEC(0) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) +# define COMPILER_ID "IntelLLVM" +#if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +#endif +#if defined(__GNUC__) +# define SIMULATE_ID "GNU" +#endif +/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and + * later. Look for 6 digit vs. 8 digit version number to decide encoding. + * VVVV is no smaller than the current year when a version is released. + */ +#if __INTEL_LLVM_COMPILER < 1000000L +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) +#else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) +#endif +#if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +#endif +#if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +#elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +#endif +#if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +#endif +#if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +#endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_C) +# define COMPILER_ID "SunPro" +# if __SUNPRO_C >= 0x5100 + /* __SUNPRO_C = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# endif + +#elif defined(__HP_cc) +# define COMPILER_ID "HP" + /* __HP_cc = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) + +#elif defined(__DECC) +# define COMPILER_ID "Compaq" + /* __DECC_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) + +#elif defined(__IBMC__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__open_xl__) && defined(__clang__) +# define COMPILER_ID "IBMClang" +# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__) +# define COMPILER_VERSION_MINOR DEC(__open_xl_release__) +# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__) + + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 +# define COMPILER_ID "XL" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__NVCOMPILER) +# define COMPILER_ID "NVHPC" +# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) +# if defined(__NVCOMPILER_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(__clang__) && defined(__cray__) +# define COMPILER_ID "CrayClang" +# define COMPILER_VERSION_MAJOR DEC(__cray_major__) +# define COMPILER_VERSION_MINOR DEC(__cray_minor__) +# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__TASKING__) +# define COMPILER_ID "Tasking" + # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000) + # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100) +# define COMPILER_VERSION_INTERNAL DEC(__VERSION__) + +#elif defined(__ORANGEC__) +# define COMPILER_ID "OrangeC" +# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__) + +#elif defined(__TINYC__) +# define COMPILER_ID "TinyCC" + +#elif defined(__BCC__) +# define COMPILER_ID "Bruce" + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__)) +# define COMPILER_ID "LCC" +# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100) +# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100) +# if defined(__LCC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__) +# endif +# if defined(__GNUC__) && defined(__GNUC_MINOR__) +# define SIMULATE_ID "GNU" +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif +# endif + +#elif defined(__GNUC__) +# define COMPILER_ID "GNU" +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(_ADI_COMPILER) +# define COMPILER_ID "ADSP" +#if defined(__VERSIONNUM__) + /* __VERSIONNUM__ = 0xVVRRPPTT */ +# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF) +# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF) +# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF) +# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + +#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) +# define COMPILER_ID "SDCC" +# if defined(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR) +# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH) +# else + /* SDCC = VRP */ +# define COMPILER_VERSION_MAJOR DEC(SDCC/100) +# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) +# define COMPILER_VERSION_PATCH DEC(SDCC % 10) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__MSYS__) +# define PLATFORM_ID "MSYS" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# elif defined(__VXWORKS__) +# define PLATFORM_ID "VxWorks" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +# elif defined(_ADI_COMPILER) +# define PLATFORM_ID "ADSP" + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_ARM64EC) +# define ARCHITECTURE_ID "ARM64EC" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__ICCSTM8__) +# define ARCHITECTURE_ID "STM8" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__TI_COMPILER_VERSION__) +# if defined(__TI_ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__MSP430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__TMS320C28XX__) +# define ARCHITECTURE_ID "TMS320C28x" + +# elif defined(__TMS320C6X__) || defined(_TMS320C6X) +# define ARCHITECTURE_ID "TMS320C6x" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +# elif defined(__ADSPSHARC__) +# define ARCHITECTURE_ID "SHARC" + +# elif defined(__ADSPBLACKFIN__) +# define ARCHITECTURE_ID "Blackfin" + +#elif defined(__TASKING__) + +# if defined(__CTC__) || defined(__CPTC__) +# define ARCHITECTURE_ID "TriCore" + +# elif defined(__CMCS__) +# define ARCHITECTURE_ID "MCS" + +# elif defined(__CARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__CARC__) +# define ARCHITECTURE_ID "ARC" + +# elif defined(__C51__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__CPCP__) +# define ARCHITECTURE_ID "PCP" + +# else +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#if !defined(__STDC__) && !defined(__clang__) +# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__) +# define C_VERSION "90" +# else +# define C_VERSION +# endif +#elif __STDC_VERSION__ > 201710L +# define C_VERSION "23" +#elif __STDC_VERSION__ >= 201710L +# define C_VERSION "17" +#elif __STDC_VERSION__ >= 201000L +# define C_VERSION "11" +#elif __STDC_VERSION__ >= 199901L +# define C_VERSION "99" +#else +# define C_VERSION "90" +#endif +const char* info_language_standard_default = + "INFO" ":" "standard_default[" C_VERSION "]"; + +const char* info_language_extensions_default = "INFO" ":" "extensions_default[" +#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \ + defined(__TI_COMPILER_VERSION__)) && \ + !defined(__STRICT_ANSI__) + "ON" +#else + "OFF" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +#ifdef ID_VOID_MAIN +void main() {} +#else +# if defined(__CLASSIC_C__) +int main(argc, argv) int argc; char *argv[]; +# else +int main(int argc, char* argv[]) +# endif +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_standard_default[argc]; + require += info_language_extensions_default[argc]; + (void)argv; + return require; +} +#endif diff --git a/12.Internal-data-representation/build/CMakeFiles/3.28.3/CompilerIdC/a.out b/12.Internal-data-representation/build/CMakeFiles/3.28.3/CompilerIdC/a.out new file mode 100755 index 0000000000000000000000000000000000000000..ecc315e71b4e62a6558ef29ebb804b7c2bdf9e59 GIT binary patch literal 16088 zcmeHOe{38_6`ngMjYE^zaci6=rP;IzN=Uu29mjQp(p+Mnvqp9j5(k8muv+`p_KEvp z?)Io%K^v4(V$w)0MGy&)stQr@qY_A{i2P9;6$M%fG!jz7KPW&e1u3LPKxNt}$9psH zJD-7; zK*W<{!vEb8&oH)$8(`ROTb!ylL3F6FF$Y{MN-?OT7(+27YSKXUDz+23sYdea8h;dZkP>u_R! z7$Pilp6g^C6OYeRPR2IjMgP}XO)PR?yQUgtJ;Yfxcy|##w+Me5@psqoqgX7be#lo`%<=6~`v&^=_P8B(hrOec-`=U*{-HrPH5EC6G5u$HDn>H57vrV0Hocsq&f|}{A3gb13Ui$9 zcqZXG#`R;ZHvF7i-{3Ec!}^3N2M@V1#9NlpTNC07!doH!i^6XX@lOfg7UG{1{?cxx z6OSDp3rLr%cphU&SE_i7Z7!Rw;(6R6%~kRGev5(#qXbCT{+Isgi=T9+|LB~2efHo`vVErgCFjhpm&rl7xk##iAGI6SKdSu^f1ViU%+hlV z_s<2*RQ1O=PgO53Uv5}`f)!sBB>g9~{*Es(Y`Nh~&pPL??RL)3)j6>X&cz$S?c`vS zIH)gQHtm8vxA(-ZK`K_Itw)@byW*U6rr!uwIHz~rLc*0T<#PE-iVhdFo7i!(t<=x< ze}0e(Idg>UrayPpnJ!)adGb0p(>dMzGCirEPF{7+IvVo%*2w{i9fdp|J_== zad4*jxm6VA=a)2AygXVBC<0Lgq6qvyM}WV7-7NL*?>n$_B%hr~XZ*rZ`YL&Rq4t7u_cMN>n9k>pw&~Qq z-8PxFN~Z0&(iRgLFBr`ivPTE_>#C4mVPyQMif!<(sj{5@*u&2sq|VTzF7JOqUFxJxb?yM6KeO``#-dO zBY#HJ_FV5J=rKu&eFpUZ6Y~2VCX%ZfAB*>_ye0lL)yzbcq6kD0h$0Y0Ac{Z~fhYn| z1fmE;5r`u2-bMiH6|p`MYXJ4b3stoO)yewBl_LLE);ZoGGS)$^6B&;%YemL-NPh0& zgz|sfDCb%Jfh;D(8o_aXXrsjI5;&0=!;z&&5CE$Q)6pWm#U&p$> zHFk`i?lG=4Nr%tUKi7-v3j8U`#MEsH*9rJ%DO0Qci=Edw?Wakd+5ivpSj*2Zv_4%G zp>c6ho2{;_w}+S4wf_4n*9-W!Dboa@3R@^3R+WtGUd^{Cl>lRKJMoRGr4mn+?j*h` z-k@+_0iO{4u%AKgA6oNxjQG{@7KQPPk~H&Fv$6~$m!q20e2ZF>Fg&iy$Ak~Bn|_w~ zMj8(Z(Kl8~^%37h{hp9UTp__)GRf=M~m} zP5f^T`G1Re3r?$$_ch#IB_q3)_@+4BO+(j3JMkR1gk>~4#NYwVweS z?L4i(_lDDM;EgFFia}{~)E-gutM%O=>yGex{UT|m^6pqBKkQ}PRFE$eU9U8$_#I=$ z5B!wfR$GI23Zz}HQ1GT)KNl3H)M&xW`fjR}%}$X?mE@9Uut2qE(EF6%(pkYx>rn7XK#Nik43FM?iI(Cotnx~6$XQXDM355ng}kH75t3H2Fm7z8rgEiy*uD} z8Ql^pZ}-Fd>@Y7wEv#Fe?jeEaPITGpwAg+!DXz@#Aa_xw+CIFmY$Fr}aeoHQzr)q` zmbJ+&vRACn6Cocr1Eh4(WWz$;h4f6^JgID z&!|6q{$C?oJ|~n{erM$O2G0$oqEop4zDaDgy(M-)5yg7`XAJx^A^SEd074HAAOpV_ zvQJ0>@XMhNgB|?+Fl3K;4iL{(&<~&gkHsGGSC(iBz9b?*Xo%{kl;bAC{uNOG-doW$ znQ;BTBD&gsPV9kS3E89nLBB>BTFYA54~cm&_F;zgAp`$JwhdMGn0L>$5=jYqMw*ww zzexo=_T=$lem+d=W;xAB|MB?e1UvNOw~1pF*yDL}W*ciOmC(oe1MGowR8(zWF=#V3 z-Seh82RqO=D8n4;$2_oG?8EwUIxtstL@+1n6(06mD~!p&z8W!hs#V9uA?|~G9rJSn u+JpPwa^leTYWoC#M5ToN&qgwBMV^tT!?o;B@ed276= search starts here: + /usr/lib/gcc/x86_64-linux-gnu/13/include + /usr/local/include + /usr/include/x86_64-linux-gnu + /usr/include + End of search list. + Compiler executable checksum: 38987c28e967c64056a6454abdef726e + COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_43ce6.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_43ce6.dir/' + as -v --64 -o CMakeFiles/cmTC_43ce6.dir/CMakeCCompilerABI.c.o /tmp/ccKYiXQN.s + GNU assembler version 2.42 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.42 + COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/ + LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/ + COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_43ce6.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_43ce6.dir/CMakeCCompilerABI.c.' + Linking C executable cmTC_43ce6 + /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_43ce6.dir/link.txt --verbose=1 + /usr/bin/cc -v CMakeFiles/cmTC_43ce6.dir/CMakeCCompilerABI.c.o -o cmTC_43ce6 + Using built-in specs. + COLLECT_GCC=/usr/bin/cc + COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper + OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa + OFFLOAD_TARGET_DEFAULT=1 + Target: x86_64-linux-gnu + Configured with: ../src/configure -v --with-pkgversion='Ubuntu 13.3.0-6ubuntu2~24.04' --with-bugurl=file:///usr/share/doc/gcc-13/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-13 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/libexec --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-libstdcxx-backtrace --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-13-fG75Ri/gcc-13-13.3.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-13-fG75Ri/gcc-13-13.3.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2 + Thread model: posix + Supported LTO compression algorithms: zlib zstd + gcc version 13.3.0 (Ubuntu 13.3.0-6ubuntu2~24.04) + COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/ + LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/ + COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_43ce6' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_43ce6.' + /usr/libexec/gcc/x86_64-linux-gnu/13/collect2 -plugin /usr/libexec/gcc/x86_64-linux-gnu/13/liblto_plugin.so -plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -plugin-opt=-fresolution=/tmp/cci5hvO7.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_43ce6 /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/13 -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/13/../../.. CMakeFiles/cmTC_43ce6.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o + COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_43ce6' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_43ce6.' + gmake[1]: Leaving directory '/home/Monreale/git/C/12.Internal-data-representation/build/CMakeFiles/CMakeScratch/TryCompile-TxgaQ8' + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "/usr/share/cmake-3.28/Modules/CMakeDetermineCompilerABI.cmake:127 (message)" + - "/usr/share/cmake-3.28/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:2 (project)" + message: | + Parsed C implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [/usr/lib/gcc/x86_64-linux-gnu/13/include] + add: [/usr/local/include] + add: [/usr/include/x86_64-linux-gnu] + add: [/usr/include] + end of search list found + collapse include dir [/usr/lib/gcc/x86_64-linux-gnu/13/include] ==> [/usr/lib/gcc/x86_64-linux-gnu/13/include] + collapse include dir [/usr/local/include] ==> [/usr/local/include] + collapse include dir [/usr/include/x86_64-linux-gnu] ==> [/usr/include/x86_64-linux-gnu] + collapse include dir [/usr/include] ==> [/usr/include] + implicit include dirs: [/usr/lib/gcc/x86_64-linux-gnu/13/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/usr/include] + + + - + kind: "message-v1" + backtrace: + - "/usr/share/cmake-3.28/Modules/CMakeDetermineCompilerABI.cmake:159 (message)" + - "/usr/share/cmake-3.28/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:2 (project)" + message: | + Parsed C implicit link information: + link line regex: [^( *|.*[/\\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + ignore line: [Change Dir: '/home/Monreale/git/C/12.Internal-data-representation/build/CMakeFiles/CMakeScratch/TryCompile-TxgaQ8'] + ignore line: [] + ignore line: [Run Build Command(s): /usr/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_43ce6/fast] + ignore line: [/usr/bin/gmake -f CMakeFiles/cmTC_43ce6.dir/build.make CMakeFiles/cmTC_43ce6.dir/build] + ignore line: [gmake[1]: Entering directory '/home/Monreale/git/C/12.Internal-data-representation/build/CMakeFiles/CMakeScratch/TryCompile-TxgaQ8'] + ignore line: [Building C object CMakeFiles/cmTC_43ce6.dir/CMakeCCompilerABI.c.o] + ignore line: [/usr/bin/cc -v -o CMakeFiles/cmTC_43ce6.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.28/Modules/CMakeCCompilerABI.c] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/cc] + ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa] + ignore line: [OFFLOAD_TARGET_DEFAULT=1] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 13.3.0-6ubuntu2~24.04' --with-bugurl=file:///usr/share/doc/gcc-13/README.Bugs --enable-languages=c ada c++ go d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-13 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/libexec --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-libstdcxx-backtrace --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-13-fG75Ri/gcc-13-13.3.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-13-fG75Ri/gcc-13-13.3.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 13.3.0 (Ubuntu 13.3.0-6ubuntu2~24.04) ] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_43ce6.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_43ce6.dir/'] + ignore line: [ /usr/libexec/gcc/x86_64-linux-gnu/13/cc1 -quiet -v -imultiarch x86_64-linux-gnu /usr/share/cmake-3.28/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_43ce6.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mtune=generic -march=x86-64 -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/ccKYiXQN.s] + ignore line: [GNU C17 (Ubuntu 13.3.0-6ubuntu2~24.04) version 13.3.0 (x86_64-linux-gnu)] + ignore line: [ compiled by GNU C version 13.3.0 GMP version 6.3.0 MPFR version 4.2.1 MPC version 1.3.1 isl version isl-0.26-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/13/include-fixed/x86_64-linux-gnu"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/13/include-fixed"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/13/../../../../x86_64-linux-gnu/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/13/include] + ignore line: [ /usr/local/include] + ignore line: [ /usr/include/x86_64-linux-gnu] + ignore line: [ /usr/include] + ignore line: [End of search list.] + ignore line: [Compiler executable checksum: 38987c28e967c64056a6454abdef726e] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_43ce6.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_43ce6.dir/'] + ignore line: [ as -v --64 -o CMakeFiles/cmTC_43ce6.dir/CMakeCCompilerABI.c.o /tmp/ccKYiXQN.s] + ignore line: [GNU assembler version 2.42 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.42] + ignore line: [COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_43ce6.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_43ce6.dir/CMakeCCompilerABI.c.'] + ignore line: [Linking C executable cmTC_43ce6] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_43ce6.dir/link.txt --verbose=1] + ignore line: [/usr/bin/cc -v CMakeFiles/cmTC_43ce6.dir/CMakeCCompilerABI.c.o -o cmTC_43ce6 ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/cc] + ignore line: [COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper] + ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa] + ignore line: [OFFLOAD_TARGET_DEFAULT=1] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 13.3.0-6ubuntu2~24.04' --with-bugurl=file:///usr/share/doc/gcc-13/README.Bugs --enable-languages=c ada c++ go d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-13 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/libexec --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-libstdcxx-backtrace --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-13-fG75Ri/gcc-13-13.3.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-13-fG75Ri/gcc-13-13.3.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib zstd] + ignore line: [gcc version 13.3.0 (Ubuntu 13.3.0-6ubuntu2~24.04) ] + ignore line: [COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_43ce6' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_43ce6.'] + link line: [ /usr/libexec/gcc/x86_64-linux-gnu/13/collect2 -plugin /usr/libexec/gcc/x86_64-linux-gnu/13/liblto_plugin.so -plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -plugin-opt=-fresolution=/tmp/cci5hvO7.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_43ce6 /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/13 -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/13/../../.. CMakeFiles/cmTC_43ce6.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o] + arg [/usr/libexec/gcc/x86_64-linux-gnu/13/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/usr/libexec/gcc/x86_64-linux-gnu/13/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/cci5hvO7.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [--build-id] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [--as-needed] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-pie] ==> ignore + arg [-znow] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTC_43ce6] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/13] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/13] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib] + arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/13/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../..] + arg [CMakeFiles/cmTC_43ce6.dir/CMakeCCompilerABI.c.o] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [--push-state] ==> ignore + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--pop-state] ==> ignore + arg [-lc] ==> lib [c] + arg [-lgcc] ==> lib [gcc] + arg [--push-state] ==> ignore + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--pop-state] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o] + collapse obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o] ==> [/usr/lib/x86_64-linux-gnu/Scrt1.o] + collapse obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o] ==> [/usr/lib/x86_64-linux-gnu/crti.o] + collapse obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o] ==> [/usr/lib/x86_64-linux-gnu/crtn.o] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/13] ==> [/usr/lib/gcc/x86_64-linux-gnu/13] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib] ==> [/usr/lib] + collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] + collapse library dir [/lib/../lib] ==> [/lib] + collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/../lib] ==> [/usr/lib] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../..] ==> [/usr/lib] + implicit libs: [gcc;gcc_s;c;gcc;gcc_s] + implicit objs: [/usr/lib/x86_64-linux-gnu/Scrt1.o;/usr/lib/x86_64-linux-gnu/crti.o;/usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o;/usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o;/usr/lib/x86_64-linux-gnu/crtn.o] + implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/13;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] + implicit fwks: [] + + +... diff --git a/12.Internal-data-representation/build/CMakeFiles/CMakeDirectoryInformation.cmake b/12.Internal-data-representation/build/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..ee1707a --- /dev/null +++ b/12.Internal-data-representation/build/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.28 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/Monreale/git/C/12.Internal-data-representation") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/Monreale/git/C/12.Internal-data-representation/build") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/12.Internal-data-representation/build/CMakeFiles/Makefile.cmake b/12.Internal-data-representation/build/CMakeFiles/Makefile.cmake new file mode 100644 index 0000000..d23c93a --- /dev/null +++ b/12.Internal-data-representation/build/CMakeFiles/Makefile.cmake @@ -0,0 +1,103 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.28 + +# The generator used is: +set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles") + +# The top level Makefile was generated from the following files: +set(CMAKE_MAKEFILE_DEPENDS + "CMakeCache.txt" + "/home/Monreale/git/C/12.Internal-data-representation/CMakeLists.txt" + "CMakeFiles/3.28.3/CMakeCCompiler.cmake" + "CMakeFiles/3.28.3/CMakeSystem.cmake" + "/usr/share/cmake-3.28/Modules/CMakeCCompiler.cmake.in" + "/usr/share/cmake-3.28/Modules/CMakeCCompilerABI.c" + "/usr/share/cmake-3.28/Modules/CMakeCInformation.cmake" + "/usr/share/cmake-3.28/Modules/CMakeCommonLanguageInclude.cmake" + "/usr/share/cmake-3.28/Modules/CMakeCompilerIdDetection.cmake" + "/usr/share/cmake-3.28/Modules/CMakeDetermineCCompiler.cmake" + "/usr/share/cmake-3.28/Modules/CMakeDetermineCompileFeatures.cmake" + "/usr/share/cmake-3.28/Modules/CMakeDetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/CMakeDetermineCompilerABI.cmake" + "/usr/share/cmake-3.28/Modules/CMakeDetermineCompilerId.cmake" + "/usr/share/cmake-3.28/Modules/CMakeFindBinUtils.cmake" + "/usr/share/cmake-3.28/Modules/CMakeGenericSystem.cmake" + "/usr/share/cmake-3.28/Modules/CMakeInitializeConfigs.cmake" + "/usr/share/cmake-3.28/Modules/CMakeLanguageInformation.cmake" + "/usr/share/cmake-3.28/Modules/CMakeParseImplicitIncludeInfo.cmake" + "/usr/share/cmake-3.28/Modules/CMakeParseImplicitLinkInfo.cmake" + "/usr/share/cmake-3.28/Modules/CMakeParseLibraryArchitecture.cmake" + "/usr/share/cmake-3.28/Modules/CMakeSystemSpecificInformation.cmake" + "/usr/share/cmake-3.28/Modules/CMakeSystemSpecificInitialize.cmake" + "/usr/share/cmake-3.28/Modules/CMakeTestCCompiler.cmake" + "/usr/share/cmake-3.28/Modules/CMakeTestCompilerCommon.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/ADSP-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/ARMCC-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/ARMClang-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/AppleClang-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/Borland-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/Bruce-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/CMakeCommonCompilerMacros.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/Clang-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/Compaq-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/Cray-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/CrayClang-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/GHS-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/GNU-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/GNU-C.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/GNU-FindBinUtils.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/GNU.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/HP-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/IAR-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/Intel-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/LCC-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/MSVC-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/NVHPC-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/OrangeC-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/PGI-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/PathScale-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/SCO-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/SDCC-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/SunPro-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/TI-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/Tasking-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/Watcom-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/XL-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/XLClang-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Compiler/zOS-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.28/Modules/Internal/FeatureTesting.cmake" + "/usr/share/cmake-3.28/Modules/Platform/Linux-GNU-C.cmake" + "/usr/share/cmake-3.28/Modules/Platform/Linux-GNU.cmake" + "/usr/share/cmake-3.28/Modules/Platform/Linux-Initialize.cmake" + "/usr/share/cmake-3.28/Modules/Platform/Linux.cmake" + "/usr/share/cmake-3.28/Modules/Platform/UnixPaths.cmake" + ) + +# The corresponding makefile is: +set(CMAKE_MAKEFILE_OUTPUTS + "Makefile" + "CMakeFiles/cmake.check_cache" + ) + +# Byproducts of CMake generate step: +set(CMAKE_MAKEFILE_PRODUCTS + "CMakeFiles/3.28.3/CMakeCCompiler.cmake" + "CMakeFiles/3.28.3/CMakeCCompiler.cmake" + "CMakeFiles/CMakeDirectoryInformation.cmake" + ) + +# Dependency information for all targets: +set(CMAKE_DEPEND_INFO_FILES + "CMakeFiles/binary_converter.dir/DependInfo.cmake" + ) diff --git a/12.Internal-data-representation/build/CMakeFiles/Makefile2 b/12.Internal-data-representation/build/CMakeFiles/Makefile2 new file mode 100644 index 0000000..1687501 --- /dev/null +++ b/12.Internal-data-representation/build/CMakeFiles/Makefile2 @@ -0,0 +1,112 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.28 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/Monreale/git/C/12.Internal-data-representation + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/Monreale/git/C/12.Internal-data-representation/build + +#============================================================================= +# Directory level rules for the build root directory + +# The main recursive "all" target. +all: CMakeFiles/binary_converter.dir/all +.PHONY : all + +# The main recursive "preinstall" target. +preinstall: +.PHONY : preinstall + +# The main recursive "clean" target. +clean: CMakeFiles/binary_converter.dir/clean +.PHONY : clean + +#============================================================================= +# Target rules for target CMakeFiles/binary_converter.dir + +# All Build rule for target. +CMakeFiles/binary_converter.dir/all: + $(MAKE) $(MAKESILENT) -f CMakeFiles/binary_converter.dir/build.make CMakeFiles/binary_converter.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/binary_converter.dir/build.make CMakeFiles/binary_converter.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/Monreale/git/C/12.Internal-data-representation/build/CMakeFiles --progress-num=1,2,3 "Built target binary_converter" +.PHONY : CMakeFiles/binary_converter.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/binary_converter.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/Monreale/git/C/12.Internal-data-representation/build/CMakeFiles 3 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/binary_converter.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/Monreale/git/C/12.Internal-data-representation/build/CMakeFiles 0 +.PHONY : CMakeFiles/binary_converter.dir/rule + +# Convenience name for target. +binary_converter: CMakeFiles/binary_converter.dir/rule +.PHONY : binary_converter + +# clean rule for target. +CMakeFiles/binary_converter.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/binary_converter.dir/build.make CMakeFiles/binary_converter.dir/clean +.PHONY : CMakeFiles/binary_converter.dir/clean + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/12.Internal-data-representation/build/CMakeFiles/TargetDirectories.txt b/12.Internal-data-representation/build/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..9d42c10 --- /dev/null +++ b/12.Internal-data-representation/build/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,3 @@ +/home/Monreale/git/C/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir +/home/Monreale/git/C/12.Internal-data-representation/build/CMakeFiles/edit_cache.dir +/home/Monreale/git/C/12.Internal-data-representation/build/CMakeFiles/rebuild_cache.dir diff --git a/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/DependInfo.cmake b/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/DependInfo.cmake new file mode 100644 index 0000000..50c3161 --- /dev/null +++ b/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/DependInfo.cmake @@ -0,0 +1,24 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/home/Monreale/git/C/12.Internal-data-representation/src/Task_1/binary.c" "CMakeFiles/binary_converter.dir/src/Task_1/binary.c.o" "gcc" "CMakeFiles/binary_converter.dir/src/Task_1/binary.c.o.d" + "/home/Monreale/git/C/12.Internal-data-representation/src/Task_1/main.c" "CMakeFiles/binary_converter.dir/src/Task_1/main.c.o" "gcc" "CMakeFiles/binary_converter.dir/src/Task_1/main.c.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/build.make b/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/build.make new file mode 100644 index 0000000..e5154b1 --- /dev/null +++ b/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/build.make @@ -0,0 +1,126 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.28 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/Monreale/git/C/12.Internal-data-representation + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/Monreale/git/C/12.Internal-data-representation/build + +# Include any dependencies generated for this target. +include CMakeFiles/binary_converter.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include CMakeFiles/binary_converter.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/binary_converter.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/binary_converter.dir/flags.make + +CMakeFiles/binary_converter.dir/src/Task_1/main.c.o: CMakeFiles/binary_converter.dir/flags.make +CMakeFiles/binary_converter.dir/src/Task_1/main.c.o: /home/Monreale/git/C/12.Internal-data-representation/src/Task_1/main.c +CMakeFiles/binary_converter.dir/src/Task_1/main.c.o: CMakeFiles/binary_converter.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/Monreale/git/C/12.Internal-data-representation/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object CMakeFiles/binary_converter.dir/src/Task_1/main.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/binary_converter.dir/src/Task_1/main.c.o -MF CMakeFiles/binary_converter.dir/src/Task_1/main.c.o.d -o CMakeFiles/binary_converter.dir/src/Task_1/main.c.o -c /home/Monreale/git/C/12.Internal-data-representation/src/Task_1/main.c + +CMakeFiles/binary_converter.dir/src/Task_1/main.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/binary_converter.dir/src/Task_1/main.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/Monreale/git/C/12.Internal-data-representation/src/Task_1/main.c > CMakeFiles/binary_converter.dir/src/Task_1/main.c.i + +CMakeFiles/binary_converter.dir/src/Task_1/main.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/binary_converter.dir/src/Task_1/main.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/Monreale/git/C/12.Internal-data-representation/src/Task_1/main.c -o CMakeFiles/binary_converter.dir/src/Task_1/main.c.s + +CMakeFiles/binary_converter.dir/src/Task_1/binary.c.o: CMakeFiles/binary_converter.dir/flags.make +CMakeFiles/binary_converter.dir/src/Task_1/binary.c.o: /home/Monreale/git/C/12.Internal-data-representation/src/Task_1/binary.c +CMakeFiles/binary_converter.dir/src/Task_1/binary.c.o: CMakeFiles/binary_converter.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/Monreale/git/C/12.Internal-data-representation/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building C object CMakeFiles/binary_converter.dir/src/Task_1/binary.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/binary_converter.dir/src/Task_1/binary.c.o -MF CMakeFiles/binary_converter.dir/src/Task_1/binary.c.o.d -o CMakeFiles/binary_converter.dir/src/Task_1/binary.c.o -c /home/Monreale/git/C/12.Internal-data-representation/src/Task_1/binary.c + +CMakeFiles/binary_converter.dir/src/Task_1/binary.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/binary_converter.dir/src/Task_1/binary.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/Monreale/git/C/12.Internal-data-representation/src/Task_1/binary.c > CMakeFiles/binary_converter.dir/src/Task_1/binary.c.i + +CMakeFiles/binary_converter.dir/src/Task_1/binary.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/binary_converter.dir/src/Task_1/binary.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/Monreale/git/C/12.Internal-data-representation/src/Task_1/binary.c -o CMakeFiles/binary_converter.dir/src/Task_1/binary.c.s + +# Object files for target binary_converter +binary_converter_OBJECTS = \ +"CMakeFiles/binary_converter.dir/src/Task_1/main.c.o" \ +"CMakeFiles/binary_converter.dir/src/Task_1/binary.c.o" + +# External object files for target binary_converter +binary_converter_EXTERNAL_OBJECTS = + +Binary_representation: CMakeFiles/binary_converter.dir/src/Task_1/main.c.o +Binary_representation: CMakeFiles/binary_converter.dir/src/Task_1/binary.c.o +Binary_representation: CMakeFiles/binary_converter.dir/build.make +Binary_representation: CMakeFiles/binary_converter.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/home/Monreale/git/C/12.Internal-data-representation/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking C executable Binary_representation" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/binary_converter.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/binary_converter.dir/build: Binary_representation +.PHONY : CMakeFiles/binary_converter.dir/build + +CMakeFiles/binary_converter.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/binary_converter.dir/cmake_clean.cmake +.PHONY : CMakeFiles/binary_converter.dir/clean + +CMakeFiles/binary_converter.dir/depend: + cd /home/Monreale/git/C/12.Internal-data-representation/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/Monreale/git/C/12.Internal-data-representation /home/Monreale/git/C/12.Internal-data-representation /home/Monreale/git/C/12.Internal-data-representation/build /home/Monreale/git/C/12.Internal-data-representation/build /home/Monreale/git/C/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/binary_converter.dir/depend + diff --git a/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/cmake_clean.cmake b/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/cmake_clean.cmake new file mode 100644 index 0000000..7b82419 --- /dev/null +++ b/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/cmake_clean.cmake @@ -0,0 +1,13 @@ +file(REMOVE_RECURSE + "Binary_representation" + "Binary_representation.pdb" + "CMakeFiles/binary_converter.dir/src/Task_1/binary.c.o" + "CMakeFiles/binary_converter.dir/src/Task_1/binary.c.o.d" + "CMakeFiles/binary_converter.dir/src/Task_1/main.c.o" + "CMakeFiles/binary_converter.dir/src/Task_1/main.c.o.d" +) + +# Per-language clean rules from dependency scanning. +foreach(lang C) + include(CMakeFiles/binary_converter.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/compiler_depend.make b/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/compiler_depend.make new file mode 100644 index 0000000..421cdfd --- /dev/null +++ b/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for binary_converter. +# This may be replaced when dependencies are built. diff --git a/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/compiler_depend.ts b/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/compiler_depend.ts new file mode 100644 index 0000000..2704558 --- /dev/null +++ b/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for binary_converter. diff --git a/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/depend.make b/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/depend.make new file mode 100644 index 0000000..6c7a2ee --- /dev/null +++ b/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for binary_converter. +# This may be replaced when dependencies are built. diff --git a/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/flags.make b/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/flags.make new file mode 100644 index 0000000..e1bbe57 --- /dev/null +++ b/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.28 + +# compile C with /usr/bin/cc +C_DEFINES = + +C_INCLUDES = -I/home/Monreale/git/C/12.Internal-data-representation/src/Task_1 + +C_FLAGS = -std=gnu11 + diff --git a/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/link.txt b/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/link.txt new file mode 100644 index 0000000..818bb0a --- /dev/null +++ b/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/cc CMakeFiles/binary_converter.dir/src/Task_1/main.c.o CMakeFiles/binary_converter.dir/src/Task_1/binary.c.o -o Binary_representation diff --git a/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/progress.make b/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/progress.make new file mode 100644 index 0000000..6a9dc74 --- /dev/null +++ b/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/progress.make @@ -0,0 +1,4 @@ +CMAKE_PROGRESS_1 = 1 +CMAKE_PROGRESS_2 = 2 +CMAKE_PROGRESS_3 = 3 + diff --git a/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/src/Task_1/binary.c.o b/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/src/Task_1/binary.c.o new file mode 100644 index 0000000000000000000000000000000000000000..e865a0511dd7d04bafd0de5dddae4ccc071a4ec9 GIT binary patch literal 4952 zcmd5@6`wsjO+u5{DMp00A`3JnrzVG!6x7sES)@bfkA{z;Lq(!;FXwaY#%EjS zJxCySY_AtQ+Ju}?A{og-u4JSj8P$|nHA&97a}eiNeC$P$@E?{iQHsvF`@DuEbQ!gaJ787w1}$(}HtDiv)8z(QI(-+=S8jNG zNOj>LIEB87PuaA@q7G}jdAy~ig=O#RJfHo0;KzJ6=x|y>Z$f;-R()53vF&T;_6ymHp%)!EeQ>=w*wL23$PlB~O4532$iOyRKjvj8Fe zLby^zNbkqkxlM>Op7SUTf|6}vcy7(XD81G2Gmw`nxHreGYaq&5DtPfTwm{4UjnCKu zX2bk~wE$YKBwuiCOd-_FG&&&3+2W&0JvS)SF(awuN*XMDvD0%oD}yFL#c$YR&W3H* z#>yl=q9Ex;Y{I7%DD}*;mi(~7*2F{Cnk$jm%@%WrtX@tiIoz5D z75gHN+{u=AXA8Tv8S}OlgmR#@ryN3OCVO|c=H$y~Nu(JyjaqcE=|KhtkeyzD0&Cd+BoLCNtYnz62`n}(>s+y;jJ=^&eH9WJ)dla(Ra5n zzQFhm+Y$<@fR}6wRaXl-p0iHF8ehhymm27J@58{k0E=5~I_^$w0hk#Lb2aa3jEAS# zFgsUgq2&}_Q4E@fY0fmxuOQ0q{f(W-)H0rB{eLD)(6;Oj$XiGs9n@J9adS4EdJCj z6Vz=4>Sk|Cxiu4u>eRV9DAxrIejZ#ldoGjYqaae=Va<$>z`Kl)8vZpn>}Jme_-5XxU);F{a-EMN6F7k{a;=#b zw?*$}_ZQJ7af@;~Vbcjt$BIwb;nCGChI21ob`0xMoziAG9X06~d<4-4+$D$USnuy` zI?DL`#$N{F{K!c=Q_eMKLh#9bdj1E_RKDN2>P+j-FPv%TYW{3~$eGj+)E_(q(mrR> zc`I)Uc)*#+59nYx>0AfFg!3lMK;KE{ZRc0}bXX&D85|CP2e0RAfTyKrh&6?w&^h`@ zLsT~&A}eK(_569TxC-NBejwkUKd(c$H^IRaM8h<$eFDCwFC01Y ztiCsVEZJcs^#g}OheGxHKbI8CgS`iz4%I&$lrU}xQZ+nyTj1}#7rq=O@M*~)20sG@ z)k&^>_a&m8tkoXdws}hm8sc%l@j-eX2fCy7`++0dANn3Bz!GJjM;z!y9F#n8L@4M0 zeG74*{TNKinORl!c$LsWAARs31+fX0PL-~qf)3CqJV@_h(n^j#7OLGug!KLa-BpwK z#3#!yty=dV1J(qqw3hHE%p)FsQ47GZriiPxr~zP)NnBivFcYFJpr{*QEgR^^rT$;Aen6s*I62nV5lNg1MM+oZcVY?B9_u)6v^KSM7*f)d zh;=1m-LVcMVzhO3kglW=ZH*+5cax^3ZX*&s(G+bx(bN)YYbVXIXj?qeexFeS9JVNr zk>=($;S0ix-)F!vt)nKY{QS6~0sAsE_@pa6{GsaeNg1OAo%)ga65c z<8CYcy=V-i;*PjW@>z)^dl(+2KkmVCs&HMl5Mo~c^&8;7!{mTa-t5;9^Z4H9aO7!eXW*4<4) ziB5MB?Tp8vTS%y*(};!OuGueoM6Qo_Btu<^&aPO(I0ZK7Dc0K5l8D4(GL!#~>0pj6 z@{rF>qg?+{)>(;VJE^5Ox3~w5tB5<9-R^Q-8ek9L6nhY9m&?eLz!8`2B~d~?iWkT_ zoNae2}yob=fUICK-L)v40UQ+oh{zVX~xmPcU z1zU&wx-Wqa-UI&p>!rQ!^Wo3`HISoEzx`LGedgcTV;8Qs|Aif{;Yn$a?y!|qe6|1U z#YU6bZ8#G0jC^5SVjRCc`t%oPG{Po)jvi0m=#s5t}hRaq*zx}@eqNr&@ literal 0 HcmV?d00001 diff --git a/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/src/Task_1/binary.c.o.d b/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/src/Task_1/binary.c.o.d new file mode 100644 index 0000000..a11ee8a --- /dev/null +++ b/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/src/Task_1/binary.c.o.d @@ -0,0 +1,36 @@ +CMakeFiles/binary_converter.dir/src/Task_1/binary.c.o: \ + /home/Monreale/git/C/12.Internal-data-representation/src/Task_1/binary.c \ + /usr/include/stdc-predef.h \ + /home/Monreale/git/C/12.Internal-data-representation/src/Task_1/binary.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ + /usr/include/limits.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ + /usr/include/x86_64-linux-gnu/bits/local_lim.h \ + /usr/include/linux/limits.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min.h \ + /usr/include/x86_64-linux-gnu/bits/posix2_lim.h /usr/include/stdio.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h diff --git a/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/src/Task_1/main.c.o b/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/src/Task_1/main.c.o new file mode 100644 index 0000000000000000000000000000000000000000..cd51ab4b2f3d2926397627ec6e7e17725bf71e7e GIT binary patch literal 5592 zcmd5B}}69qz60tAGfEv+ViXk#s03@Cz4G{Lmj-jyD-*XC|(!639f zPPl9<2DyX}1|{)NG#am^Erqs64TNIChuy>&6E&%cCM6{XV`2zV>U(cz_NLQYjPk`H zy`A~Z@4feXZ{GglaOJiwIUWxa!^56tnUz2pdu3r}UQW|;HlNL7zZWdKUFA#svdh~S)Ym-=$-czc1YR%Bg&&$J8_H7R84sbMue-869l#0qgn*bQ z;@|u=H8mC=hF>I4))+MRohlf3ZdUtKj~{wsIfBSwxr_Rc1Xd+@|qe3VBXi(htTSDo2+&g>eWUC)6U8*yCvP8qiQ*sUo&KNd$b z&-L#ijo1jeIJ7%9LjGHKO>VJm))EUW-y>lLEn^d&G?teasNl;>i8w|!=+{FUV_%Sa z?zy#R@^vW)Nx#P+=wn8Z1 z3w2Ogrg9l8IDQ_$juEu5*Pp^VV?%WA%5KC&{0H)m7QA4I_&7pIdjl(;J*<%=9-VY{ zMkWbWLK58?Wa=?DqtwGoCd(8SWqAD==n!Qi<9BkqP=RU_-#RIn=)aqOxlAHttzX8S z633w8I6i+S&6u+4I5ZQi_DGf$emX4)LIj+!HI?bpnUR=e46_E{ZPr1@jzJFn zAPe^qHJAfutCfLrP zgcs0Q+%_@rKa4F&9X~>M)mb=l>j?HJwk$YK-AzB;A5MpZ7`SDuw=w3-v{3c`E;Ca- zZKq9V9J|~mGyB(Wxqhg{aVT2m8RgsoX}gY@lXv=5HM-lqD@2%QoTth?_?fFQwzZ;S zqqe%Lwl%D`Y9*!KQg3n5ldZH|e`tM~x43K#hcSUX_$!1z{7l^XLKTBg$Wg@Lu}@`#o{!rLkM;F%8sz>psuE8H+Q9Td}v-&+jz@mDjF&Jho&27O5Yl(!ydOfQRh5eBO z)sbLJBp3~bb-x~J4hz&D2!v=I2-by~{EaHDx;m=+>-JUGHSDXd_lFwUa?pnZ`ipw& zPyCvP@fe|YAL8i>yiCGpOZX;^3qOKaA@OBD&nx_se7)0!zgxoPxOI}BIWQMGb%~F? zDDZX(zhA6_2lvg5^m#E@C!MPb&&asC0wqBWk>-|QL_YvF=qcDxT_5o` z1?{-^_^W|E-tyQp@+jvE@tzfX{P7@`YzfS;ROJq0PbTo;0Arlj5ziWJ#plAqxCvtw z{2|WU3n3bRa67RUS2g}R*g&8E)xHF5(dV?Yg!L^R|5e^60MQWo#d-rw(7spz{Q46A zj|u9NhtMys&%&md%e*(ay^P^p<>LDd-&3moc5bi1o;+0jdtnoOs`ejn`*PVB=Bhn* zVYc(Xy1+IR=Zxo%??+)T@NBWsa-7F+=LuswVI0*SeX3^<5Ub(+cMKQOQ0s>>v)PYx M{o=hZT&VVc144snlmGw# literal 0 HcmV?d00001 diff --git a/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/src/Task_1/main.c.o.d b/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/src/Task_1/main.c.o.d new file mode 100644 index 0000000..be4c292 --- /dev/null +++ b/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/src/Task_1/main.c.o.d @@ -0,0 +1,42 @@ +CMakeFiles/binary_converter.dir/src/Task_1/main.c.o: \ + /home/Monreale/git/C/12.Internal-data-representation/src/Task_1/main.c \ + /usr/include/stdc-predef.h \ + /home/Monreale/git/C/12.Internal-data-representation/src/Task_1/binary.h \ + /usr/include/ctype.h /usr/include/features.h \ + /usr/include/features-time64.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ + /usr/include/limits.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ + /usr/include/x86_64-linux-gnu/bits/local_lim.h \ + /usr/include/linux/limits.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ + /usr/include/x86_64-linux-gnu/bits/pthread_stack_min.h \ + /usr/include/x86_64-linux-gnu/bits/posix2_lim.h /usr/include/stdio.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ + /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h /usr/include/string.h \ + /usr/include/strings.h diff --git a/12.Internal-data-representation/build/CMakeFiles/cmake.check_cache b/12.Internal-data-representation/build/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/12.Internal-data-representation/build/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/12.Internal-data-representation/build/CMakeFiles/progress.marks b/12.Internal-data-representation/build/CMakeFiles/progress.marks new file mode 100644 index 0000000..00750ed --- /dev/null +++ b/12.Internal-data-representation/build/CMakeFiles/progress.marks @@ -0,0 +1 @@ +3 diff --git a/12.Internal-data-representation/build/Makefile b/12.Internal-data-representation/build/Makefile new file mode 100644 index 0000000..fadbdcb --- /dev/null +++ b/12.Internal-data-representation/build/Makefile @@ -0,0 +1,208 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.28 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/Monreale/git/C/12.Internal-data-representation + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/Monreale/git/C/12.Internal-data-representation/build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "No interactive CMake dialog available..." + /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache +.PHONY : edit_cache/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." + /usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache +.PHONY : rebuild_cache/fast + +# The main all target +all: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/Monreale/git/C/12.Internal-data-representation/build/CMakeFiles /home/Monreale/git/C/12.Internal-data-representation/build//CMakeFiles/progress.marks + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all + $(CMAKE_COMMAND) -E cmake_progress_start /home/Monreale/git/C/12.Internal-data-representation/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +#============================================================================= +# Target rules for targets named binary_converter + +# Build rule for target. +binary_converter: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 binary_converter +.PHONY : binary_converter + +# fast build rule for target. +binary_converter/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/binary_converter.dir/build.make CMakeFiles/binary_converter.dir/build +.PHONY : binary_converter/fast + +src/Task_1/binary.o: src/Task_1/binary.c.o +.PHONY : src/Task_1/binary.o + +# target to build an object file +src/Task_1/binary.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/binary_converter.dir/build.make CMakeFiles/binary_converter.dir/src/Task_1/binary.c.o +.PHONY : src/Task_1/binary.c.o + +src/Task_1/binary.i: src/Task_1/binary.c.i +.PHONY : src/Task_1/binary.i + +# target to preprocess a source file +src/Task_1/binary.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/binary_converter.dir/build.make CMakeFiles/binary_converter.dir/src/Task_1/binary.c.i +.PHONY : src/Task_1/binary.c.i + +src/Task_1/binary.s: src/Task_1/binary.c.s +.PHONY : src/Task_1/binary.s + +# target to generate assembly for a file +src/Task_1/binary.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/binary_converter.dir/build.make CMakeFiles/binary_converter.dir/src/Task_1/binary.c.s +.PHONY : src/Task_1/binary.c.s + +src/Task_1/main.o: src/Task_1/main.c.o +.PHONY : src/Task_1/main.o + +# target to build an object file +src/Task_1/main.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/binary_converter.dir/build.make CMakeFiles/binary_converter.dir/src/Task_1/main.c.o +.PHONY : src/Task_1/main.c.o + +src/Task_1/main.i: src/Task_1/main.c.i +.PHONY : src/Task_1/main.i + +# target to preprocess a source file +src/Task_1/main.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/binary_converter.dir/build.make CMakeFiles/binary_converter.dir/src/Task_1/main.c.i +.PHONY : src/Task_1/main.c.i + +src/Task_1/main.s: src/Task_1/main.c.s +.PHONY : src/Task_1/main.s + +# target to generate assembly for a file +src/Task_1/main.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/binary_converter.dir/build.make CMakeFiles/binary_converter.dir/src/Task_1/main.c.s +.PHONY : src/Task_1/main.c.s + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... rebuild_cache" + @echo "... binary_converter" + @echo "... src/Task_1/binary.o" + @echo "... src/Task_1/binary.i" + @echo "... src/Task_1/binary.s" + @echo "... src/Task_1/main.o" + @echo "... src/Task_1/main.i" + @echo "... src/Task_1/main.s" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/12.Internal-data-representation/build/cmake_install.cmake b/12.Internal-data-representation/build/cmake_install.cmake new file mode 100644 index 0000000..ca5ff0a --- /dev/null +++ b/12.Internal-data-representation/build/cmake_install.cmake @@ -0,0 +1,54 @@ +# Install script for directory: /home/Monreale/git/C/12.Internal-data-representation + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/usr/bin/objdump") +endif() + +if(CMAKE_INSTALL_COMPONENT) + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") +else() + set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +file(WRITE "/home/Monreale/git/C/12.Internal-data-representation/build/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/12.Internal-data-representation/src/Task_1/binary.c b/12.Internal-data-representation/src/Task_1/binary.c new file mode 100644 index 0000000..0600df6 --- /dev/null +++ b/12.Internal-data-representation/src/Task_1/binary.c @@ -0,0 +1,263 @@ +#include "binary.h" +#include +#include + +// Функция для вычисления степени числа +int power(int degree, int number) +{ + int result = 1; + + if (degree == 0) + { + return result; + } + + for (int i = 0; i < degree; i++) + { + result = result * number; + } + + return result; +} + +// Функция для нахождения длины переменной типа int +int length_int(int number) +{ + int count = 0; + + if (number == 0) + { + return 1; + } + + while (number != 0) + { + number = number / 10; + count++; + } + + return count; +} + +// Функция для перевода числа в двоичное представление +int binary_representation(int number) +{ + int binary[64]; + int intermediate = 0, result = 0, i = 0; + int bits = 16; + + // Если число 0 + if (number == 0) + { + printf("0"); + return 0; + } + + if (number > 1023) + { + printf("Внимание, число больше 1023, результат неправельный, введите " + "число меньше либо равное 1023\n"); + return 0; + } + + int original_number = number; + + // Обрабатываем отрицательные числа + if (number < 0) + { + unsigned int temp = -number; + + i = 0; + while (temp > 0) + { + binary[i] = temp % 2; + temp = temp / 2; + i++; + } + + while (i < bits) + { + binary[i] = 0; + i++; + } + + for (int j = 0; j < bits; j++) + { + if (binary[j] == 0) + { + binary[j] = 1; + } + else if (binary[j] == 1) + { + binary[j] = 0; + } + } + + int carry = 1; + for (int j = 0; j < bits; j++) + { + int sum = binary[j] + carry; + binary[j] = sum % 2; + carry = sum / 2; + if (carry == 0) + break; + } + } + + // Обрабатываем положительные числа + else if (number > 0) + { + i = 0; + while (number > 0) + { + binary[i] = number % 2; + number = number / 2; + i++; + } + + while (i < bits) + { + binary[i] = 0; + i++; + } + } + + // Собираем результат + for (int j = i - 1; j >= 0; j--) + { + intermediate = binary[j] * power(j, 10); + result = result + intermediate; + } + + return result; +} + +// Функция для перевода бинарного числа в десятичное +int decimal_representation(int binary) +{ + int result = 0; + int temp = binary; + int len = length_int(binary); + + // Проверка на корректность двоичного числа + for (int i = 0; i < len; i++) + { + int digit = temp % 10; + if (digit > 1) + { + printf("Ошибка: число %d не является двоичным!\n", binary); + return -1; + } + temp = temp / 10; + } + + // Преобразование + for (int i = 0; i < len; i++) + { + int digit = binary % 10; + result += digit * power(i, 2); + binary = binary / 10; + } + + return result; +} + +// Функция для сложения в столбик в двоичном представлении +int binary_addition(int binary_1, int binary_2) +{ + int length_1 = length_int(binary_1); + int length_2 = length_int(binary_2); + int final_length = 0; + + if (length_1 > length_2) + { + final_length = length_1; + } + else + { + final_length = length_2; + } + + // Создаем массивы с дополнительным местом для возможного переноса + int arr_1[final_length + 1]; + int arr_2[final_length + 1]; + int arr_sum[final_length + 2]; + + // Инициализируем массивы нулями + for (int i = 0; i <= final_length; i++) + { + arr_1[i] = 0; + arr_2[i] = 0; + } + + // Заполняем массивы с конца + int index_1 = final_length; + int temp_1 = binary_1; + while (temp_1 > 0) + { + arr_1[index_1] = temp_1 % 10; + temp_1 /= 10; + index_1--; + } + + int index_2 = final_length; + int temp_2 = binary_2; + while (temp_2 > 0) + { + arr_2[index_2] = temp_2 % 10; + temp_2 /= 10; + index_2--; + } + + // Выполняем сложение с переносом + int carry = 0; + int sum_index = final_length + 1; + + for (int i = final_length; i >= 0; i--) + { + int bit_sum = arr_1[i] + arr_2[i] + carry; + + if (bit_sum == 0) + { + arr_sum[sum_index] = 0; + carry = 0; + } + else if (bit_sum == 1) + { + arr_sum[sum_index] = 1; + carry = 0; + } + else if (bit_sum == 2) + { + arr_sum[sum_index] = 0; + carry = 1; + } + else + { + arr_sum[sum_index] = 1; + carry = 1; + } + sum_index--; + } + + // Обрабатываем оставшийся перенос + if (carry == 1) + { + arr_sum[sum_index] = 1; + } + else + { + arr_sum[sum_index] = 0; + } + + // Преобразуем массив обратно в число + int result = 0; + int start_index = (arr_sum[0] == 0 && final_length > 0) ? 1 : 0; + + for (int i = start_index; i <= final_length + 1; i++) + { + result = result * 10 + arr_sum[i]; + } + + return result; +} diff --git a/12.Internal-data-representation/src/Task_1/binary.h b/12.Internal-data-representation/src/Task_1/binary.h new file mode 100644 index 0000000..bf08fc3 --- /dev/null +++ b/12.Internal-data-representation/src/Task_1/binary.h @@ -0,0 +1,14 @@ +#ifndef BINARY_H +#define BINARY_H + +int power(int degree, int number); + +int length_int(int number); + +int binary_representation(int number); + +int decimal_representation(int binary); + +int binary_addition(int binary_1, int binary_2); + +#endif diff --git a/12.Internal-data-representation/src/Task_1/main.c b/12.Internal-data-representation/src/Task_1/main.c new file mode 100644 index 0000000..84b1b4a --- /dev/null +++ b/12.Internal-data-representation/src/Task_1/main.c @@ -0,0 +1,140 @@ +#include "binary.h" +#include +#include +#include +#include + +int main() +{ + printf("=== Двоичное представление === \n"); + + // Ввод чисел + char char_input_numbers[100]; + int int_input_numbers[100]; + + printf("\n"); + printf("Ведите число от 0 до 1023 для перевода в двоичный вид\n"); + printf("Введите два числа, сумма которых не превышает 1023, чтобы получить " + "их сумму в двоичном представлении\n"); + printf("\n"); + fgets(char_input_numbers, sizeof(char_input_numbers), stdin); + int len_numbers = strlen(char_input_numbers); + + for (int i = 0; i < len_numbers; i++) + { + if (char_input_numbers[i] >= '0' && char_input_numbers[i] <= '9') + { + int_input_numbers[i] = char_input_numbers[i] - '0'; + } + else + { + int_input_numbers[i] = -1; + } + } + + int num_1 = 0, num_2 = 0; + int count = 0, operations = 0; + + for (int i = 0; i < len_numbers; i++) + { + if (int_input_numbers[i] != -1) + { + count++; + } + + else + { + if (count > 0 && num_1 == 0) + { + while (count != 0) + { + operations + = int_input_numbers[i - count] * power(count - 1, 10); + num_1 = num_1 + operations; + count--; + } + continue; + } + + else if (count > 0 && num_2 == 0) + { + while (count != 0) + { + operations + = int_input_numbers[i - count] * power(count - 1, 10); + num_2 = num_2 + operations; + count--; + } + } + + else + { + printf("Ошибка. Введите только два числа через пробел\n"); + break; + } + } + } + + printf("\n"); + printf("Введены числа %d и %d \n", num_1, num_2); + + int number_1_translation, number_2_translation, binary_1_translation, + binary_2_translation, column_addition, column_addition_translation; + + // Перевод чисел в двоичное представление + if (num_1 < 1024 && num_2 < 1024) + { + printf("- Перевод числа в двоичное представление\n"); + number_1_translation = binary_representation(num_1); + number_2_translation = binary_representation(num_2); + printf("Число %d в двоичном представлении: %d\n", num_1, + number_1_translation); + printf("Число %d в двоичном представлении: %d\n", num_2, + number_2_translation); + printf("\n"); + } + + else + { + printf("Ошибка. Число больше 1023 будут содержать 11 и более битов, " + "что выходит за рамки предусмотренного формата\n"); + return 0; + } + + // Сложение в столбик в двоичном представлении, сумма + printf("- Сложение в столбик в двоичном представлении\n"); + if (num_1 + num_2 > 1023) + { + printf("Ошибка. Числа в сумме дают больше 1023 и будут содержать 11 и " + "более битов, что выходит за рамки предусмотренного формата\n"); + printf("\n"); + } + + else + { + column_addition + = binary_addition(number_1_translation, number_2_translation); + printf("Сложение %d и %d в столбик: %d\n", number_1_translation, + number_2_translation, column_addition); + printf("\n"); + } + + // Перевод в десятичное число + printf("- Перевод в десятичное число\n"); + binary_1_translation = decimal_representation(number_1_translation); + binary_2_translation = decimal_representation(number_2_translation); + column_addition_translation = decimal_representation(column_addition); + printf("Число %d в десятичном представлении: %d\n", number_1_translation, + binary_1_translation); + printf("Число %d в десятичном представлении: %d\n", number_2_translation, + binary_2_translation); + if (num_1 + num_2 < 1023) + { + printf("Сумма %d в десятичном представлении: %d\n", column_addition, + column_addition_translation); + } + + printf("\n \n"); + + return 0; +} From 4442d1deb58e771b573e144a0b20790d6e3ed656 Mon Sep 17 00:00:00 2001 From: Stanislav Klimovich Date: Thu, 11 Dec 2025 02:11:55 +0000 Subject: [PATCH 2/5] Double Under the Microscope (Task 2) --- .../CMakeLists.txt | 11 +- .../build/CMakeCache.txt | 11 +- .../build/CMakeFiles/CMakeConfigureLog.yaml | 82 +++++++------ .../build/CMakeFiles/Makefile.cmake | 5 + .../build/CMakeFiles/Makefile2 | 28 +++++ .../build/CMakeFiles/TargetDirectories.txt | 1 + .../double_converter.dir/DependInfo.cmake | 23 ++++ .../double_converter.dir/build.make | 110 ++++++++++++++++++ .../double_converter.dir/cmake_clean.cmake | 11 ++ .../double_converter.dir/compiler_depend.make | 2 + .../double_converter.dir/compiler_depend.ts | 2 + .../double_converter.dir/depend.make | 2 + .../double_converter.dir/flags.make | 10 ++ .../CMakeFiles/double_converter.dir/link.txt | 1 + .../double_converter.dir/progress.make | 3 + .../src/Task_2/double.c.o | Bin 0 -> 2544 bytes .../src/Task_2/double.c.o.d | 31 +++++ .../build/CMakeFiles/progress.marks | 2 +- .../build/Double_under_the_microscope | Bin 0 -> 16104 bytes .../build/Makefile | 41 +++++++ .../src/Task_2/double.c | 76 ++++++++++++ 21 files changed, 397 insertions(+), 55 deletions(-) create mode 100644 12.Internal-data-representation/build/CMakeFiles/double_converter.dir/DependInfo.cmake create mode 100644 12.Internal-data-representation/build/CMakeFiles/double_converter.dir/build.make create mode 100644 12.Internal-data-representation/build/CMakeFiles/double_converter.dir/cmake_clean.cmake create mode 100644 12.Internal-data-representation/build/CMakeFiles/double_converter.dir/compiler_depend.make create mode 100644 12.Internal-data-representation/build/CMakeFiles/double_converter.dir/compiler_depend.ts create mode 100644 12.Internal-data-representation/build/CMakeFiles/double_converter.dir/depend.make create mode 100644 12.Internal-data-representation/build/CMakeFiles/double_converter.dir/flags.make create mode 100644 12.Internal-data-representation/build/CMakeFiles/double_converter.dir/link.txt create mode 100644 12.Internal-data-representation/build/CMakeFiles/double_converter.dir/progress.make create mode 100644 12.Internal-data-representation/build/CMakeFiles/double_converter.dir/src/Task_2/double.c.o create mode 100644 12.Internal-data-representation/build/CMakeFiles/double_converter.dir/src/Task_2/double.c.o.d create mode 100755 12.Internal-data-representation/build/Double_under_the_microscope create mode 100644 12.Internal-data-representation/src/Task_2/double.c diff --git a/12.Internal-data-representation/CMakeLists.txt b/12.Internal-data-representation/CMakeLists.txt index b1699e1..24c18b8 100644 --- a/12.Internal-data-representation/CMakeLists.txt +++ b/12.Internal-data-representation/CMakeLists.txt @@ -4,10 +4,19 @@ project("12.Internal-data-representation" C) set(CMAKE_C_STANDARD 11) set(CMAKE_C_STANDARD_REQUIRED ON) +# Task 1: Binary representation add_executable(binary_converter src/Task_1/main.c src/Task_1/binary.c ) target_include_directories(binary_converter PRIVATE src/Task_1) -set_target_properties(binary_converter PROPERTIES OUTPUT_NAME "Binary_representation") \ No newline at end of file +set_target_properties(binary_converter PROPERTIES OUTPUT_NAME "Binary_representation") + +# Task 2: Double under the microscope +add_executable(double_converter + src/Task_2/double.c +) + +target_include_directories(double_converter PRIVATE src/Task_2) +set_target_properties(double_converter PROPERTIES OUTPUT_NAME "Double_under_the_microscope") \ No newline at end of file diff --git a/12.Internal-data-representation/build/CMakeCache.txt b/12.Internal-data-representation/build/CMakeCache.txt index 74023a2..c74bef9 100644 --- a/12.Internal-data-representation/build/CMakeCache.txt +++ b/12.Internal-data-representation/build/CMakeCache.txt @@ -23,15 +23,6 @@ //Value Computed by CMake 12.Internal-data-representation_SOURCE_DIR:STATIC=/home/Monreale/git/C/12.Internal-data-representation -//Value Computed by CMake -Binary_BINARY_DIR:STATIC=/home/Monreale/git/C/12.Internal-data-representation/build - -//Value Computed by CMake -Binary_IS_TOP_LEVEL:STATIC=ON - -//Value Computed by CMake -Binary_SOURCE_DIR:STATIC=/home/Monreale/git/C/12.Internal-data-representation - //Path to a program. CMAKE_ADDR2LINE:FILEPATH=/usr/bin/addr2line @@ -342,5 +333,5 @@ CMAKE_UNAME:INTERNAL=/usr/bin/uname //ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 //linker supports push/pop state -_CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED:INTERNAL=FALSE +_CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED:INTERNAL=TRUE diff --git a/12.Internal-data-representation/build/CMakeFiles/CMakeConfigureLog.yaml b/12.Internal-data-representation/build/CMakeFiles/CMakeConfigureLog.yaml index a212da0..20f5ca6 100644 --- a/12.Internal-data-representation/build/CMakeFiles/CMakeConfigureLog.yaml +++ b/12.Internal-data-representation/build/CMakeFiles/CMakeConfigureLog.yaml @@ -8,10 +8,6 @@ events: - "CMakeLists.txt:2 (project)" message: | The system is: Linux - 6.14.0-36-generic - x86_64 -... - ---- -events: - kind: "message-v1" backtrace: @@ -43,8 +39,8 @@ events: checks: - "Detecting C compiler ABI info" directories: - source: "/home/Monreale/git/C/12.Internal-data-representation/build/CMakeFiles/CMakeScratch/TryCompile-TxgaQ8" - binary: "/home/Monreale/git/C/12.Internal-data-representation/build/CMakeFiles/CMakeScratch/TryCompile-TxgaQ8" + source: "/home/Monreale/git/C/12.Internal-data-representation/build/CMakeFiles/CMakeScratch/TryCompile-NGIkom" + binary: "/home/Monreale/git/C/12.Internal-data-representation/build/CMakeFiles/CMakeScratch/TryCompile-NGIkom" cmakeVariables: CMAKE_C_FLAGS: "" CMAKE_C_FLAGS_DEBUG: "-g" @@ -53,13 +49,13 @@ events: variable: "CMAKE_C_ABI_COMPILED" cached: true stdout: | - Change Dir: '/home/Monreale/git/C/12.Internal-data-representation/build/CMakeFiles/CMakeScratch/TryCompile-TxgaQ8' + Change Dir: '/home/Monreale/git/C/12.Internal-data-representation/build/CMakeFiles/CMakeScratch/TryCompile-NGIkom' - Run Build Command(s): /usr/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_43ce6/fast - /usr/bin/gmake -f CMakeFiles/cmTC_43ce6.dir/build.make CMakeFiles/cmTC_43ce6.dir/build - gmake[1]: Entering directory '/home/Monreale/git/C/12.Internal-data-representation/build/CMakeFiles/CMakeScratch/TryCompile-TxgaQ8' - Building C object CMakeFiles/cmTC_43ce6.dir/CMakeCCompilerABI.c.o - /usr/bin/cc -v -o CMakeFiles/cmTC_43ce6.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.28/Modules/CMakeCCompilerABI.c + Run Build Command(s): /usr/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_63deb/fast + /usr/bin/gmake -f CMakeFiles/cmTC_63deb.dir/build.make CMakeFiles/cmTC_63deb.dir/build + gmake[1]: Entering directory '/home/Monreale/git/C/12.Internal-data-representation/build/CMakeFiles/CMakeScratch/TryCompile-NGIkom' + Building C object CMakeFiles/cmTC_63deb.dir/CMakeCCompilerABI.c.o + /usr/bin/cc -v -o CMakeFiles/cmTC_63deb.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.28/Modules/CMakeCCompilerABI.c Using built-in specs. COLLECT_GCC=/usr/bin/cc OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa @@ -69,8 +65,8 @@ events: Thread model: posix Supported LTO compression algorithms: zlib zstd gcc version 13.3.0 (Ubuntu 13.3.0-6ubuntu2~24.04) - COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_43ce6.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_43ce6.dir/' - /usr/libexec/gcc/x86_64-linux-gnu/13/cc1 -quiet -v -imultiarch x86_64-linux-gnu /usr/share/cmake-3.28/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_43ce6.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mtune=generic -march=x86-64 -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/ccKYiXQN.s + COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_63deb.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_63deb.dir/' + /usr/libexec/gcc/x86_64-linux-gnu/13/cc1 -quiet -v -imultiarch x86_64-linux-gnu /usr/share/cmake-3.28/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_63deb.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mtune=generic -march=x86-64 -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/cchskPDI.s GNU C17 (Ubuntu 13.3.0-6ubuntu2~24.04) version 13.3.0 (x86_64-linux-gnu) compiled by GNU C version 13.3.0, GMP version 6.3.0, MPFR version 4.2.1, MPC version 1.3.1, isl version isl-0.26-GMP @@ -87,15 +83,15 @@ events: /usr/include End of search list. Compiler executable checksum: 38987c28e967c64056a6454abdef726e - COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_43ce6.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_43ce6.dir/' - as -v --64 -o CMakeFiles/cmTC_43ce6.dir/CMakeCCompilerABI.c.o /tmp/ccKYiXQN.s + COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_63deb.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_63deb.dir/' + as -v --64 -o CMakeFiles/cmTC_63deb.dir/CMakeCCompilerABI.c.o /tmp/cchskPDI.s GNU assembler version 2.42 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.42 COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/ LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/ - COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_43ce6.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_43ce6.dir/CMakeCCompilerABI.c.' - Linking C executable cmTC_43ce6 - /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_43ce6.dir/link.txt --verbose=1 - /usr/bin/cc -v CMakeFiles/cmTC_43ce6.dir/CMakeCCompilerABI.c.o -o cmTC_43ce6 + COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_63deb.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_63deb.dir/CMakeCCompilerABI.c.' + Linking C executable cmTC_63deb + /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_63deb.dir/link.txt --verbose=1 + /usr/bin/cc -v CMakeFiles/cmTC_63deb.dir/CMakeCCompilerABI.c.o -o cmTC_63deb Using built-in specs. COLLECT_GCC=/usr/bin/cc COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper @@ -108,10 +104,10 @@ events: gcc version 13.3.0 (Ubuntu 13.3.0-6ubuntu2~24.04) COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/ LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/ - COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_43ce6' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_43ce6.' - /usr/libexec/gcc/x86_64-linux-gnu/13/collect2 -plugin /usr/libexec/gcc/x86_64-linux-gnu/13/liblto_plugin.so -plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -plugin-opt=-fresolution=/tmp/cci5hvO7.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_43ce6 /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/13 -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/13/../../.. CMakeFiles/cmTC_43ce6.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o - COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_43ce6' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_43ce6.' - gmake[1]: Leaving directory '/home/Monreale/git/C/12.Internal-data-representation/build/CMakeFiles/CMakeScratch/TryCompile-TxgaQ8' + COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_63deb' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_63deb.' + /usr/libexec/gcc/x86_64-linux-gnu/13/collect2 -plugin /usr/libexec/gcc/x86_64-linux-gnu/13/liblto_plugin.so -plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -plugin-opt=-fresolution=/tmp/ccgiNdhA.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_63deb /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/13 -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/13/../../.. CMakeFiles/cmTC_63deb.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o + COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_63deb' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_63deb.' + gmake[1]: Leaving directory '/home/Monreale/git/C/12.Internal-data-representation/build/CMakeFiles/CMakeScratch/TryCompile-NGIkom' exitCode: 0 - @@ -145,13 +141,13 @@ events: message: | Parsed C implicit link information: link line regex: [^( *|.*[/\\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] - ignore line: [Change Dir: '/home/Monreale/git/C/12.Internal-data-representation/build/CMakeFiles/CMakeScratch/TryCompile-TxgaQ8'] + ignore line: [Change Dir: '/home/Monreale/git/C/12.Internal-data-representation/build/CMakeFiles/CMakeScratch/TryCompile-NGIkom'] ignore line: [] - ignore line: [Run Build Command(s): /usr/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_43ce6/fast] - ignore line: [/usr/bin/gmake -f CMakeFiles/cmTC_43ce6.dir/build.make CMakeFiles/cmTC_43ce6.dir/build] - ignore line: [gmake[1]: Entering directory '/home/Monreale/git/C/12.Internal-data-representation/build/CMakeFiles/CMakeScratch/TryCompile-TxgaQ8'] - ignore line: [Building C object CMakeFiles/cmTC_43ce6.dir/CMakeCCompilerABI.c.o] - ignore line: [/usr/bin/cc -v -o CMakeFiles/cmTC_43ce6.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.28/Modules/CMakeCCompilerABI.c] + ignore line: [Run Build Command(s): /usr/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_63deb/fast] + ignore line: [/usr/bin/gmake -f CMakeFiles/cmTC_63deb.dir/build.make CMakeFiles/cmTC_63deb.dir/build] + ignore line: [gmake[1]: Entering directory '/home/Monreale/git/C/12.Internal-data-representation/build/CMakeFiles/CMakeScratch/TryCompile-NGIkom'] + ignore line: [Building C object CMakeFiles/cmTC_63deb.dir/CMakeCCompilerABI.c.o] + ignore line: [/usr/bin/cc -v -o CMakeFiles/cmTC_63deb.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.28/Modules/CMakeCCompilerABI.c] ignore line: [Using built-in specs.] ignore line: [COLLECT_GCC=/usr/bin/cc] ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa] @@ -161,8 +157,8 @@ events: ignore line: [Thread model: posix] ignore line: [Supported LTO compression algorithms: zlib zstd] ignore line: [gcc version 13.3.0 (Ubuntu 13.3.0-6ubuntu2~24.04) ] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_43ce6.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_43ce6.dir/'] - ignore line: [ /usr/libexec/gcc/x86_64-linux-gnu/13/cc1 -quiet -v -imultiarch x86_64-linux-gnu /usr/share/cmake-3.28/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_43ce6.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mtune=generic -march=x86-64 -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/ccKYiXQN.s] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_63deb.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_63deb.dir/'] + ignore line: [ /usr/libexec/gcc/x86_64-linux-gnu/13/cc1 -quiet -v -imultiarch x86_64-linux-gnu /usr/share/cmake-3.28/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_63deb.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mtune=generic -march=x86-64 -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/cchskPDI.s] ignore line: [GNU C17 (Ubuntu 13.3.0-6ubuntu2~24.04) version 13.3.0 (x86_64-linux-gnu)] ignore line: [ compiled by GNU C version 13.3.0 GMP version 6.3.0 MPFR version 4.2.1 MPC version 1.3.1 isl version isl-0.26-GMP] ignore line: [] @@ -179,15 +175,15 @@ events: ignore line: [ /usr/include] ignore line: [End of search list.] ignore line: [Compiler executable checksum: 38987c28e967c64056a6454abdef726e] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_43ce6.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_43ce6.dir/'] - ignore line: [ as -v --64 -o CMakeFiles/cmTC_43ce6.dir/CMakeCCompilerABI.c.o /tmp/ccKYiXQN.s] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_63deb.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_63deb.dir/'] + ignore line: [ as -v --64 -o CMakeFiles/cmTC_63deb.dir/CMakeCCompilerABI.c.o /tmp/cchskPDI.s] ignore line: [GNU assembler version 2.42 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.42] ignore line: [COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/] ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_43ce6.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_43ce6.dir/CMakeCCompilerABI.c.'] - ignore line: [Linking C executable cmTC_43ce6] - ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_43ce6.dir/link.txt --verbose=1] - ignore line: [/usr/bin/cc -v CMakeFiles/cmTC_43ce6.dir/CMakeCCompilerABI.c.o -o cmTC_43ce6 ] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_63deb.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_63deb.dir/CMakeCCompilerABI.c.'] + ignore line: [Linking C executable cmTC_63deb] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_63deb.dir/link.txt --verbose=1] + ignore line: [/usr/bin/cc -v CMakeFiles/cmTC_63deb.dir/CMakeCCompilerABI.c.o -o cmTC_63deb ] ignore line: [Using built-in specs.] ignore line: [COLLECT_GCC=/usr/bin/cc] ignore line: [COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper] @@ -200,13 +196,13 @@ events: ignore line: [gcc version 13.3.0 (Ubuntu 13.3.0-6ubuntu2~24.04) ] ignore line: [COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/] ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_43ce6' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_43ce6.'] - link line: [ /usr/libexec/gcc/x86_64-linux-gnu/13/collect2 -plugin /usr/libexec/gcc/x86_64-linux-gnu/13/liblto_plugin.so -plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -plugin-opt=-fresolution=/tmp/cci5hvO7.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_43ce6 /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/13 -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/13/../../.. CMakeFiles/cmTC_43ce6.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_63deb' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_63deb.'] + link line: [ /usr/libexec/gcc/x86_64-linux-gnu/13/collect2 -plugin /usr/libexec/gcc/x86_64-linux-gnu/13/liblto_plugin.so -plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -plugin-opt=-fresolution=/tmp/ccgiNdhA.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_63deb /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/13 -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/13/../../.. CMakeFiles/cmTC_63deb.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o] arg [/usr/libexec/gcc/x86_64-linux-gnu/13/collect2] ==> ignore arg [-plugin] ==> ignore arg [/usr/libexec/gcc/x86_64-linux-gnu/13/liblto_plugin.so] ==> ignore arg [-plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper] ==> ignore - arg [-plugin-opt=-fresolution=/tmp/cci5hvO7.res] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/ccgiNdhA.res] ==> ignore arg [-plugin-opt=-pass-through=-lgcc] ==> ignore arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore arg [-plugin-opt=-pass-through=-lc] ==> ignore @@ -224,7 +220,7 @@ events: arg [-znow] ==> ignore arg [-zrelro] ==> ignore arg [-o] ==> ignore - arg [cmTC_43ce6] ==> ignore + arg [cmTC_63deb] ==> ignore arg [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o] arg [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o] arg [/usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o] @@ -236,7 +232,7 @@ events: arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] arg [-L/usr/lib/gcc/x86_64-linux-gnu/13/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../..] - arg [CMakeFiles/cmTC_43ce6.dir/CMakeCCompilerABI.c.o] ==> ignore + arg [CMakeFiles/cmTC_63deb.dir/CMakeCCompilerABI.c.o] ==> ignore arg [-lgcc] ==> lib [gcc] arg [--push-state] ==> ignore arg [--as-needed] ==> ignore diff --git a/12.Internal-data-representation/build/CMakeFiles/Makefile.cmake b/12.Internal-data-representation/build/CMakeFiles/Makefile.cmake index d23c93a..6d75f07 100644 --- a/12.Internal-data-representation/build/CMakeFiles/Makefile.cmake +++ b/12.Internal-data-representation/build/CMakeFiles/Makefile.cmake @@ -20,6 +20,7 @@ set(CMAKE_MAKEFILE_DEPENDS "/usr/share/cmake-3.28/Modules/CMakeDetermineCompiler.cmake" "/usr/share/cmake-3.28/Modules/CMakeDetermineCompilerABI.cmake" "/usr/share/cmake-3.28/Modules/CMakeDetermineCompilerId.cmake" + "/usr/share/cmake-3.28/Modules/CMakeDetermineSystem.cmake" "/usr/share/cmake-3.28/Modules/CMakeFindBinUtils.cmake" "/usr/share/cmake-3.28/Modules/CMakeGenericSystem.cmake" "/usr/share/cmake-3.28/Modules/CMakeInitializeConfigs.cmake" @@ -27,10 +28,12 @@ set(CMAKE_MAKEFILE_DEPENDS "/usr/share/cmake-3.28/Modules/CMakeParseImplicitIncludeInfo.cmake" "/usr/share/cmake-3.28/Modules/CMakeParseImplicitLinkInfo.cmake" "/usr/share/cmake-3.28/Modules/CMakeParseLibraryArchitecture.cmake" + "/usr/share/cmake-3.28/Modules/CMakeSystem.cmake.in" "/usr/share/cmake-3.28/Modules/CMakeSystemSpecificInformation.cmake" "/usr/share/cmake-3.28/Modules/CMakeSystemSpecificInitialize.cmake" "/usr/share/cmake-3.28/Modules/CMakeTestCCompiler.cmake" "/usr/share/cmake-3.28/Modules/CMakeTestCompilerCommon.cmake" + "/usr/share/cmake-3.28/Modules/CMakeUnixFindMake.cmake" "/usr/share/cmake-3.28/Modules/Compiler/ADSP-DetermineCompiler.cmake" "/usr/share/cmake-3.28/Modules/Compiler/ARMCC-DetermineCompiler.cmake" "/usr/share/cmake-3.28/Modules/Compiler/ARMClang-DetermineCompiler.cmake" @@ -92,6 +95,7 @@ set(CMAKE_MAKEFILE_OUTPUTS # Byproducts of CMake generate step: set(CMAKE_MAKEFILE_PRODUCTS + "CMakeFiles/3.28.3/CMakeSystem.cmake" "CMakeFiles/3.28.3/CMakeCCompiler.cmake" "CMakeFiles/3.28.3/CMakeCCompiler.cmake" "CMakeFiles/CMakeDirectoryInformation.cmake" @@ -100,4 +104,5 @@ set(CMAKE_MAKEFILE_PRODUCTS # Dependency information for all targets: set(CMAKE_DEPEND_INFO_FILES "CMakeFiles/binary_converter.dir/DependInfo.cmake" + "CMakeFiles/double_converter.dir/DependInfo.cmake" ) diff --git a/12.Internal-data-representation/build/CMakeFiles/Makefile2 b/12.Internal-data-representation/build/CMakeFiles/Makefile2 index 1687501..935cfc9 100644 --- a/12.Internal-data-representation/build/CMakeFiles/Makefile2 +++ b/12.Internal-data-representation/build/CMakeFiles/Makefile2 @@ -64,6 +64,7 @@ CMAKE_BINARY_DIR = /home/Monreale/git/C/12.Internal-data-representation/build # The main recursive "all" target. all: CMakeFiles/binary_converter.dir/all +all: CMakeFiles/double_converter.dir/all .PHONY : all # The main recursive "preinstall" target. @@ -72,6 +73,7 @@ preinstall: # The main recursive "clean" target. clean: CMakeFiles/binary_converter.dir/clean +clean: CMakeFiles/double_converter.dir/clean .PHONY : clean #============================================================================= @@ -100,6 +102,32 @@ CMakeFiles/binary_converter.dir/clean: $(MAKE) $(MAKESILENT) -f CMakeFiles/binary_converter.dir/build.make CMakeFiles/binary_converter.dir/clean .PHONY : CMakeFiles/binary_converter.dir/clean +#============================================================================= +# Target rules for target CMakeFiles/double_converter.dir + +# All Build rule for target. +CMakeFiles/double_converter.dir/all: + $(MAKE) $(MAKESILENT) -f CMakeFiles/double_converter.dir/build.make CMakeFiles/double_converter.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/double_converter.dir/build.make CMakeFiles/double_converter.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/Monreale/git/C/12.Internal-data-representation/build/CMakeFiles --progress-num=4,5 "Built target double_converter" +.PHONY : CMakeFiles/double_converter.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/double_converter.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/Monreale/git/C/12.Internal-data-representation/build/CMakeFiles 2 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/double_converter.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/Monreale/git/C/12.Internal-data-representation/build/CMakeFiles 0 +.PHONY : CMakeFiles/double_converter.dir/rule + +# Convenience name for target. +double_converter: CMakeFiles/double_converter.dir/rule +.PHONY : double_converter + +# clean rule for target. +CMakeFiles/double_converter.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/double_converter.dir/build.make CMakeFiles/double_converter.dir/clean +.PHONY : CMakeFiles/double_converter.dir/clean + #============================================================================= # Special targets to cleanup operation of make. diff --git a/12.Internal-data-representation/build/CMakeFiles/TargetDirectories.txt b/12.Internal-data-representation/build/CMakeFiles/TargetDirectories.txt index 9d42c10..311b6d1 100644 --- a/12.Internal-data-representation/build/CMakeFiles/TargetDirectories.txt +++ b/12.Internal-data-representation/build/CMakeFiles/TargetDirectories.txt @@ -1,3 +1,4 @@ /home/Monreale/git/C/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir +/home/Monreale/git/C/12.Internal-data-representation/build/CMakeFiles/double_converter.dir /home/Monreale/git/C/12.Internal-data-representation/build/CMakeFiles/edit_cache.dir /home/Monreale/git/C/12.Internal-data-representation/build/CMakeFiles/rebuild_cache.dir diff --git a/12.Internal-data-representation/build/CMakeFiles/double_converter.dir/DependInfo.cmake b/12.Internal-data-representation/build/CMakeFiles/double_converter.dir/DependInfo.cmake new file mode 100644 index 0000000..728b2a4 --- /dev/null +++ b/12.Internal-data-representation/build/CMakeFiles/double_converter.dir/DependInfo.cmake @@ -0,0 +1,23 @@ + +# Consider dependencies only in project. +set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) + +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + ) + +# The set of dependency files which are needed: +set(CMAKE_DEPENDS_DEPENDENCY_FILES + "/home/Monreale/git/C/12.Internal-data-representation/src/Task_2/double.c" "CMakeFiles/double_converter.dir/src/Task_2/double.c.o" "gcc" "CMakeFiles/double_converter.dir/src/Task_2/double.c.o.d" + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES + ) + +# Targets to which this target links which contain Fortran sources. +set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/12.Internal-data-representation/build/CMakeFiles/double_converter.dir/build.make b/12.Internal-data-representation/build/CMakeFiles/double_converter.dir/build.make new file mode 100644 index 0000000..62359ae --- /dev/null +++ b/12.Internal-data-representation/build/CMakeFiles/double_converter.dir/build.make @@ -0,0 +1,110 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.28 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/Monreale/git/C/12.Internal-data-representation + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/Monreale/git/C/12.Internal-data-representation/build + +# Include any dependencies generated for this target. +include CMakeFiles/double_converter.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include CMakeFiles/double_converter.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/double_converter.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/double_converter.dir/flags.make + +CMakeFiles/double_converter.dir/src/Task_2/double.c.o: CMakeFiles/double_converter.dir/flags.make +CMakeFiles/double_converter.dir/src/Task_2/double.c.o: /home/Monreale/git/C/12.Internal-data-representation/src/Task_2/double.c +CMakeFiles/double_converter.dir/src/Task_2/double.c.o: CMakeFiles/double_converter.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/Monreale/git/C/12.Internal-data-representation/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object CMakeFiles/double_converter.dir/src/Task_2/double.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/double_converter.dir/src/Task_2/double.c.o -MF CMakeFiles/double_converter.dir/src/Task_2/double.c.o.d -o CMakeFiles/double_converter.dir/src/Task_2/double.c.o -c /home/Monreale/git/C/12.Internal-data-representation/src/Task_2/double.c + +CMakeFiles/double_converter.dir/src/Task_2/double.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/double_converter.dir/src/Task_2/double.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/Monreale/git/C/12.Internal-data-representation/src/Task_2/double.c > CMakeFiles/double_converter.dir/src/Task_2/double.c.i + +CMakeFiles/double_converter.dir/src/Task_2/double.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/double_converter.dir/src/Task_2/double.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/Monreale/git/C/12.Internal-data-representation/src/Task_2/double.c -o CMakeFiles/double_converter.dir/src/Task_2/double.c.s + +# Object files for target double_converter +double_converter_OBJECTS = \ +"CMakeFiles/double_converter.dir/src/Task_2/double.c.o" + +# External object files for target double_converter +double_converter_EXTERNAL_OBJECTS = + +Double_under_the_microscope: CMakeFiles/double_converter.dir/src/Task_2/double.c.o +Double_under_the_microscope: CMakeFiles/double_converter.dir/build.make +Double_under_the_microscope: CMakeFiles/double_converter.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/home/Monreale/git/C/12.Internal-data-representation/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking C executable Double_under_the_microscope" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/double_converter.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/double_converter.dir/build: Double_under_the_microscope +.PHONY : CMakeFiles/double_converter.dir/build + +CMakeFiles/double_converter.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/double_converter.dir/cmake_clean.cmake +.PHONY : CMakeFiles/double_converter.dir/clean + +CMakeFiles/double_converter.dir/depend: + cd /home/Monreale/git/C/12.Internal-data-representation/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/Monreale/git/C/12.Internal-data-representation /home/Monreale/git/C/12.Internal-data-representation /home/Monreale/git/C/12.Internal-data-representation/build /home/Monreale/git/C/12.Internal-data-representation/build /home/Monreale/git/C/12.Internal-data-representation/build/CMakeFiles/double_converter.dir/DependInfo.cmake "--color=$(COLOR)" +.PHONY : CMakeFiles/double_converter.dir/depend + diff --git a/12.Internal-data-representation/build/CMakeFiles/double_converter.dir/cmake_clean.cmake b/12.Internal-data-representation/build/CMakeFiles/double_converter.dir/cmake_clean.cmake new file mode 100644 index 0000000..bfaf262 --- /dev/null +++ b/12.Internal-data-representation/build/CMakeFiles/double_converter.dir/cmake_clean.cmake @@ -0,0 +1,11 @@ +file(REMOVE_RECURSE + "CMakeFiles/double_converter.dir/src/Task_2/double.c.o" + "CMakeFiles/double_converter.dir/src/Task_2/double.c.o.d" + "Double_under_the_microscope" + "Double_under_the_microscope.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang C) + include(CMakeFiles/double_converter.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/12.Internal-data-representation/build/CMakeFiles/double_converter.dir/compiler_depend.make b/12.Internal-data-representation/build/CMakeFiles/double_converter.dir/compiler_depend.make new file mode 100644 index 0000000..ffd6ff3 --- /dev/null +++ b/12.Internal-data-representation/build/CMakeFiles/double_converter.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for double_converter. +# This may be replaced when dependencies are built. diff --git a/12.Internal-data-representation/build/CMakeFiles/double_converter.dir/compiler_depend.ts b/12.Internal-data-representation/build/CMakeFiles/double_converter.dir/compiler_depend.ts new file mode 100644 index 0000000..2c79204 --- /dev/null +++ b/12.Internal-data-representation/build/CMakeFiles/double_converter.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for double_converter. diff --git a/12.Internal-data-representation/build/CMakeFiles/double_converter.dir/depend.make b/12.Internal-data-representation/build/CMakeFiles/double_converter.dir/depend.make new file mode 100644 index 0000000..db16c4f --- /dev/null +++ b/12.Internal-data-representation/build/CMakeFiles/double_converter.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for double_converter. +# This may be replaced when dependencies are built. diff --git a/12.Internal-data-representation/build/CMakeFiles/double_converter.dir/flags.make b/12.Internal-data-representation/build/CMakeFiles/double_converter.dir/flags.make new file mode 100644 index 0000000..1f85199 --- /dev/null +++ b/12.Internal-data-representation/build/CMakeFiles/double_converter.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.28 + +# compile C with /usr/bin/cc +C_DEFINES = + +C_INCLUDES = -I/home/Monreale/git/C/12.Internal-data-representation/src/Task_2 + +C_FLAGS = -std=gnu11 + diff --git a/12.Internal-data-representation/build/CMakeFiles/double_converter.dir/link.txt b/12.Internal-data-representation/build/CMakeFiles/double_converter.dir/link.txt new file mode 100644 index 0000000..d06c284 --- /dev/null +++ b/12.Internal-data-representation/build/CMakeFiles/double_converter.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/cc CMakeFiles/double_converter.dir/src/Task_2/double.c.o -o Double_under_the_microscope diff --git a/12.Internal-data-representation/build/CMakeFiles/double_converter.dir/progress.make b/12.Internal-data-representation/build/CMakeFiles/double_converter.dir/progress.make new file mode 100644 index 0000000..19ce96e --- /dev/null +++ b/12.Internal-data-representation/build/CMakeFiles/double_converter.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 4 +CMAKE_PROGRESS_2 = 5 + diff --git a/12.Internal-data-representation/build/CMakeFiles/double_converter.dir/src/Task_2/double.c.o b/12.Internal-data-representation/build/CMakeFiles/double_converter.dir/src/Task_2/double.c.o new file mode 100644 index 0000000000000000000000000000000000000000..302f77cdbe000031d002bbb491147c4f442dd95a GIT binary patch literal 2544 zcmbtV-HTgA6hAln*|qJiT1087DJ5FB?j@Tp>Q>a?GTTAQJ{0z~;cjx{#%?}L?uD+9 zN)1*np&&l_7x?0vwh&Nci{eJuhr6)iKIWwmNgotJRuSVlb7wZU;|&x&Fqw0H=Xd6u zIWu$fKD)deGYn8-!0Rxu6beuoALwbJrr|gogWsl4|GCP&`@HcWo#V~X#5r_wj~&c! z@!MlWvg+zY>z+-#7)fX}i{4A0@*11{V zBcJ;gZ`3>B&Nk{kI1{Zo%+(ufoyRFUS#Nq!f+$Rs`15PH^+tUU+;@ZZQjfY`5dJsj z+h*<9U;Tb>lJDA`MzL*h;RBeYqC5PuGHZ|#2I-;M8ngvw3-EB~8|aY$_BA(1VV z@>8&4t)QATle4L-$thIlO?10}W+FEQaA|4jV*K3dnp<+*`1}R)f|;Cq$rWbmMry%K zF1#RNfKlA|3=X=2msVCG2CzjKc38*>IUDa?0pt3Naq{TIlE5Hf$7gQE zmX3{&oQfeu;88#HW=7%Hew1${@b53m2V#y>0V??Qb1 za2&4xyT*TB+9UE~sMo(KaaB)B@^1~{w>AFDlKnX?=V%(Yq#%xXC>vgKmYE}^efc5D;h z)||Kx(tf+-nw4s~Vpp9_jG>k6^-R8M740DJ|NM<(JhdkDcO+I!i(mO>rB0J<;~{bq zHR@gZ5D64cAj+pQ;4#!mRWDxM&*vnrz9VP~u^(!#LjRrrMRd`c|22LdW2r7ZoyxzA zzOd-~r*}tKGE74KbGabZ7Zw$-<~Px)^f2!yy&&n-xmOUUcc;_$B@mZ!YEu1I_B*K1 zntJ?!1YS`@IqUIs3!~1zLmv+mbB(X>WsEBXl2@64Pt z9*@>d6}5k=xzg@;&*MAy-ZOV*@9f<9LacpvI22M+s?;YGNh5WRCd!6&4{-$$Rh!j( ze6La~)oqZgZJlF}IsmIvu7sy!4eP6b#9Ky{3V64pR)W$)LgLL-md$o7f{MpMyjf&o z*^j^Deh7-)Z7)J(l!*Q9;>XAVMbOKm+?;8!&FW0+bnNB4^f3yLMB<%e-Z|z8PI7yK zl26JBeKzwr{MZN^6+u6*hk1V7<!({VV$`4{B$stxH>=cbko=|n?1l`Zx)^ljeMu&G5Wo}CZ98@v&Duk5t;MZ1YY)2hjV;P( zJG9S8B=gCmse+lzAKJGwoy#T<#XHkU#6OzJWw{@Q<66;?j&KM^y&9hoW*60|grMmF z%Di5hO3kO)_Xz72+j6z)WVyH^g=tcy(k!2U;VU>~Vbuqjid>K6I&fy8qd&{n8_^$O zeNEJ{i(cd_bO2FkKG0l|GValP=Wp4gcjm9dnDpqS4YJ(y=xN?d8D>3Q?&X{#+lWU` z=aZCCkKX$Uu;RAOk@Lf(!&1_`l4+`?V|ot`Gd7Mjx8>>kUfj zUmP*RR!JXtz2-H0yw-y!p|NTHypHE)tlkc1+H@(+3IQE!6cvTn)Gz#Tn||SDl^(jNkKHmCBfxh#K#eu-j7#{GpZ-=dtKtKP^?}xtRMiKs zne+6a)@LD=uvRp_K837B#cx!3?2?vG@%bw*RQkV#BMf?U@%)2 zP|!=m(5dn$0_vw?SMq|DjF4QTKBtlDRKJ|MPt`%(S=tXZMhZ- zyNeU8m@)&$FRS7cPQ2zB;yv$;H~E3kZ=t2W%o z*U01<%j($p_2omc%MBK0Agsezz8F_AT4#%7GJQ-R!J>2S8c_8*yXyEu;cbqss6dScu`VBAP zJ&f2MCR)0g&>vWAPXlvS`E?lHz$r`9#6F+hGnjf7lpq5^27(L(83-~EWFW{ukbxir zK?Z^h&@-E`Dt)>1Qt9Q=`O@&%$Qj%0@Js`@xRU#90Pm;Yp03Ez$YIxP`_b20RO#7p59049{ersP3zqGz zo%>`>zuLB9%l#YI+K&f`{~3Hv!%v=>kvr*4e4c|o3Y0=^Q9r+i_Uh^Xi`as?XTv+^ z-&S>Z7+n�D}w!83-~EWFW{ukbxirK?Z^h1Q`f2@IT9d?8}pVc(TW?gIk;@E%Qwd z9#+|S(g2Ncd;yYG%Hw^eSdTxL`Cd>xn<=@K1a`RQDpDjXtg8D9=*UHuCX~GVW(Q!sz$^ zFj@9Yh>Nw&SKUqMw&Ki8@0xUO+{O5KGEEwHMXp0^}mlu`KneoEWektcez?U z&k2jL15MXT{&c*;*!4Q;8yE3NAL0F}5bd%N-=vrGh1IGJm5^GY>Y|QDjwkK14yikp z%zwwK)aOy5ICB1p{yE!!iMxMR^e>`PssA&L>zo~Dv0ArUB1~bWIIr0LOO<~cJPFUl?AlWPXe3o1~`^Fo`c`>W9$RVV*3Dil>90 zgMJY#BRmi7|D<4giT!0>3F{U1{~pgz`#&WZU$gb%HHGg&PyO`ADMKHba&v28Tqy5# zrK!q2&@T$(SHX9_sDoX3vq{TgCwjayWtj1!3W|bR?C#dO)YPtZ!^{|6v~Qg@(#Xi-Q%k-v`W-_5QR`#I1^(iBs&&Q7$$*h?_rn>X-OwvdcGnr$c zcq9X!<}}wtu88gO=#gRUKCpdX%!qaDGO%BM*QYzS?`zu$HC~J`Vme#(T?dr0r~Tm_ z+uMzYckezJJ7gT%zN0+`hJWLKRCe-z$WDEFkHGb%9sWi#5jW$?9u~q*f5E`@Y~eQv zT!l?Fi0bV62X*=@07jyaGkW6L1ic>6_AtB>sjN{fBok;di!Y@j{Q%634P=!a+0dSU#J~7gD+GG{Jx^pG?Pz zz_s4AsWiKr8mijS97L)Vl3hwOlYJ0r-oZO(A1*D~!!xZXfoLK*F`OyqFr<#A;+YhJ zIdtS+X_)I7OyQ}s>!a6b-Gx&bzbQ`fzxO8VE;ie~QYT!453O~CKhyhN>vVL_DHgBOA-tq(lS_=wa)_;PsPL=+PpWq4bX>BR8 ztS<%kb7TJgOCL_5LOB(_tak-R*iqW|kN>O8-@$&eeil69;Zx51{BJ`?Ig$A8?+gFV z$bAKevHL1@!ms1w;-B;J`Q+t2?k zEM9(p#Bmk;fy;C%GJiyU4Haxeb>G#J`%!r>)9){`;0P_58y%E( zB!cino(D4Nq2d}pX--|MLynay*c$PbM4~$q +#include + +int main() +{ + union + { + double d; + uint64_t u; + } num; + + printf("Введите число: "); + scanf("%lf", &num.d); + + // Извлекаем биты + uint64_t bits = num.u; + int sign = (bits >> 63) & 1; + int exponent = (bits >> 52) & 0x7FF; + uint64_t mantissa = bits & 0xFFFFFFFFFFFFF; + + // Специальные случаи + if (exponent == 0x7FF) + { + if (mantissa == 0) + { + printf("%cinf\n", sign ? '-' : '+'); + } + + else + { + printf("NaN\n"); + } + return 0; + } + + // Вычисляем порядок + int power; + if (exponent == 0) + { + if (mantissa == 0) + { + printf("%c0.0*2^0\n", sign ? '-' : '+'); + return 0; + } + power = -1022; + while (!(mantissa & (1ULL << 51))) + { + mantissa <<= 1; + power--; + } + mantissa <<= 1; + mantissa &= 0xFFFFFFFFFFFFF; + } + + else + { + power = exponent - 1023; + mantissa |= 1ULL << 52; + } + + // Выводим знак + printf("%c1.", sign ? '-' : '+'); + + // Выводим мантиссу с 20 знаками после запятой + uint64_t remainder = mantissa & ((1ULL << 52) - 1); + for (int i = 0; i < 20; i++) + { + remainder *= 10; + printf("%lu", remainder >> 52); + remainder &= (1ULL << 52) - 1; + } + + printf("*2^%d\n", power); + + return 0; +} \ No newline at end of file From 01a1f17d6a0b2728d1a0b043e7fe483f8871d5dd Mon Sep 17 00:00:00 2001 From: Stanislav Klimovich Date: Sun, 28 Dec 2025 20:05:02 +0000 Subject: [PATCH 3/5] delete /build --- .../build/Binary_representation | Bin 20552 -> 0 bytes .../build/CMakeCache.txt | 337 ------- .../CMakeFiles/3.28.3/CMakeCCompiler.cmake | 74 -- .../3.28.3/CMakeDetermineCompilerABI_C.bin | Bin 15968 -> 0 bytes .../build/CMakeFiles/3.28.3/CMakeSystem.cmake | 15 - .../3.28.3/CompilerIdC/CMakeCCompilerId.c | 880 ------------------ .../build/CMakeFiles/3.28.3/CompilerIdC/a.out | Bin 16088 -> 0 bytes .../build/CMakeFiles/CMakeConfigureLog.yaml | 266 ------ .../CMakeDirectoryInformation.cmake | 16 - .../build/CMakeFiles/Makefile.cmake | 108 --- .../build/CMakeFiles/Makefile2 | 140 --- .../build/CMakeFiles/TargetDirectories.txt | 4 - .../binary_converter.dir/DependInfo.cmake | 24 - .../binary_converter.dir/build.make | 126 --- .../binary_converter.dir/cmake_clean.cmake | 13 - .../binary_converter.dir/compiler_depend.make | 2 - .../binary_converter.dir/compiler_depend.ts | 2 - .../binary_converter.dir/depend.make | 2 - .../binary_converter.dir/flags.make | 10 - .../CMakeFiles/binary_converter.dir/link.txt | 1 - .../binary_converter.dir/progress.make | 4 - .../src/Task_1/binary.c.o | Bin 4952 -> 0 bytes .../src/Task_1/binary.c.o.d | 36 - .../binary_converter.dir/src/Task_1/main.c.o | Bin 5592 -> 0 bytes .../src/Task_1/main.c.o.d | 42 - .../build/CMakeFiles/cmake.check_cache | 1 - .../double_converter.dir/DependInfo.cmake | 23 - .../double_converter.dir/build.make | 110 --- .../double_converter.dir/cmake_clean.cmake | 11 - .../double_converter.dir/compiler_depend.make | 2 - .../double_converter.dir/compiler_depend.ts | 2 - .../double_converter.dir/depend.make | 2 - .../double_converter.dir/flags.make | 10 - .../CMakeFiles/double_converter.dir/link.txt | 1 - .../double_converter.dir/progress.make | 3 - .../src/Task_2/double.c.o | Bin 2544 -> 0 bytes .../src/Task_2/double.c.o.d | 31 - .../build/CMakeFiles/progress.marks | 1 - .../build/Double_under_the_microscope | Bin 16104 -> 0 bytes .../build/Makefile | 249 ----- .../build/cmake_install.cmake | 54 -- 41 files changed, 2602 deletions(-) delete mode 100755 12.Internal-data-representation/build/Binary_representation delete mode 100644 12.Internal-data-representation/build/CMakeCache.txt delete mode 100644 12.Internal-data-representation/build/CMakeFiles/3.28.3/CMakeCCompiler.cmake delete mode 100755 12.Internal-data-representation/build/CMakeFiles/3.28.3/CMakeDetermineCompilerABI_C.bin delete mode 100644 12.Internal-data-representation/build/CMakeFiles/3.28.3/CMakeSystem.cmake delete mode 100644 12.Internal-data-representation/build/CMakeFiles/3.28.3/CompilerIdC/CMakeCCompilerId.c delete mode 100755 12.Internal-data-representation/build/CMakeFiles/3.28.3/CompilerIdC/a.out delete mode 100644 12.Internal-data-representation/build/CMakeFiles/CMakeConfigureLog.yaml delete mode 100644 12.Internal-data-representation/build/CMakeFiles/CMakeDirectoryInformation.cmake delete mode 100644 12.Internal-data-representation/build/CMakeFiles/Makefile.cmake delete mode 100644 12.Internal-data-representation/build/CMakeFiles/Makefile2 delete mode 100644 12.Internal-data-representation/build/CMakeFiles/TargetDirectories.txt delete mode 100644 12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/DependInfo.cmake delete mode 100644 12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/build.make delete mode 100644 12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/cmake_clean.cmake delete mode 100644 12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/compiler_depend.make delete mode 100644 12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/compiler_depend.ts delete mode 100644 12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/depend.make delete mode 100644 12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/flags.make delete mode 100644 12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/link.txt delete mode 100644 12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/progress.make delete mode 100644 12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/src/Task_1/binary.c.o delete mode 100644 12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/src/Task_1/binary.c.o.d delete mode 100644 12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/src/Task_1/main.c.o delete mode 100644 12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/src/Task_1/main.c.o.d delete mode 100644 12.Internal-data-representation/build/CMakeFiles/cmake.check_cache delete mode 100644 12.Internal-data-representation/build/CMakeFiles/double_converter.dir/DependInfo.cmake delete mode 100644 12.Internal-data-representation/build/CMakeFiles/double_converter.dir/build.make delete mode 100644 12.Internal-data-representation/build/CMakeFiles/double_converter.dir/cmake_clean.cmake delete mode 100644 12.Internal-data-representation/build/CMakeFiles/double_converter.dir/compiler_depend.make delete mode 100644 12.Internal-data-representation/build/CMakeFiles/double_converter.dir/compiler_depend.ts delete mode 100644 12.Internal-data-representation/build/CMakeFiles/double_converter.dir/depend.make delete mode 100644 12.Internal-data-representation/build/CMakeFiles/double_converter.dir/flags.make delete mode 100644 12.Internal-data-representation/build/CMakeFiles/double_converter.dir/link.txt delete mode 100644 12.Internal-data-representation/build/CMakeFiles/double_converter.dir/progress.make delete mode 100644 12.Internal-data-representation/build/CMakeFiles/double_converter.dir/src/Task_2/double.c.o delete mode 100644 12.Internal-data-representation/build/CMakeFiles/double_converter.dir/src/Task_2/double.c.o.d delete mode 100644 12.Internal-data-representation/build/CMakeFiles/progress.marks delete mode 100755 12.Internal-data-representation/build/Double_under_the_microscope delete mode 100644 12.Internal-data-representation/build/Makefile delete mode 100644 12.Internal-data-representation/build/cmake_install.cmake diff --git a/12.Internal-data-representation/build/Binary_representation b/12.Internal-data-representation/build/Binary_representation deleted file mode 100755 index 1b33a734a1d0c3a63c276ce088a75ede020bf854..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 20552 zcmeHPeUwzim9HK^F(NZ47{m`+gsd!~9X=!|nK*nreCz=s!fayvXqxFBrsI62r$@o% zW1#7kcOHa^fe3pz8_1GX6SEl!=%@_LVB(-B>%Qi2vKZOTL@}qwp3TA4)zKyN{%%#> zH{FjJ<7TtF`J-!2zgzd#{i<8H>ecJ%R~wDR3yXX{!DWc}l91RaMJd+}TTSK=qFl@t zSKvBc+#oIic_=>Ry4ed)7pVq@!!_R!K$06vl>y*&iYyqihXhG(u(Iz`)xuDeD4gVm zQB~t!nACKJ-0s>dReFR6j?f)qm@7xIX(>~3ElcuYvyMxPhAc-Y$?el}`?MUxb2<@CxB%VsG(UU;7(3x;g(%aEhE zeA=RiQ{1iX4K@x9I{plGc*QL>(N(i%-cl2uS`)2nS~GRc>{(N1%?vcw2c}CG$S*%W zlv8)!RUx3JgJ?R8qNrKntdH78>vrP*!9QPp>Vc()_gsJD=Eu`Ny!p|YkMG_}JmfdY z5Dyj7$0wK@`S z6pit4v`#cMp&AS}#zU141}m!{3|57rHAJnf4#mI|tBKU19jQ`DOtE;dHUzO?uyRc( zSQV`c)kGhOh=y3SE?y;wi}GidxO4HMdGmwQ12f&)jQ;BMz^x*YTbG)6u4q3vscoG7ECQ4Hx& z5!SRr-}(;HYlx`Rc+aooD~{bILXub941(}#QF%=qc0N+0ENZk~7N z(0NV~XF7)thum^5hyEFtDnwrno#qV}9(S6*G;g>(sre~CC^sy?&fFPCbvgcy`hQuvS$(9-DX4pPh8!OZoT*9{jf+{5Kx_Up@FQ z^6+W@w#Z67U|MgQiL>XHtuUr_Onb%LUiK=y%8vO7Sl_P-6p!Bm6am^^_Btr$_F*Rp z+}0N#gV244>ImIs+3w=;&BXVThTwln^56PB0+TP8);Y8Dw|AJGeM3y&%Vz3Ad^8k9 zw1VN;Zq;v=r~WsW)uLH6O{p*wW%HM+CwMZEOi;_X&va$N7s|$uJj)0J4Sox^hVUsF!l!3(5%p? zM!(_meT5qAF&+5M!rX2&9}P>jUFjWCz-T6|%Tc$Ir+$~sb|sJC3Ko%BY0J8~yZG4! z!TO<3#CA1FHO559X6+omg`Y`So#aZXW!rV z%1gXzS?hbPrgWFlN4J{9`d-mA%r^Qm6S|D^Ac)LJV8uT+(w5PeFwXmIcilUn z-k+;Ovr7e&+elYtif#0om5v!bxw@*V%Iti{Z>2gvD%xY6nCw_aFKLtPr=hc77pbtkJKx7lTfk%|$vl=1T(!1hYa{$p4IiGil1I?gm1N_YTd*P$bGOerZcDPc8|!E{ zXsRWZRx%0M=u5N{yJ$L*8OQ8cWr>~ormIsj6oyIDwn=^ljxs1A8I!Pwk(KLoh zT8$ipKVu@6SmI0c`I@k*E7?4IM8a}JK-=4kwVa4>rz?2^HF7NTb*#0h!!mbHGC5dJ zK*r*MtL1d|jqgm4_Z?5X>6?sjC2#B>W*pljwr^dY~#r}#?u=v2ec$H zbD3>Ct*W*pBszTLYvLWBX;rkDyUp#R=}UjnMoW~5q%nQYQL4W{RP)0R%m+J4Osmt} z^lNbrLyc|oCG(a=HyfT_2kKT$s|clq=%cn zZZk0)8&80aA!cW~$iy(4meDbQdnf*M+`}%EVw~tG>W|*(f!#Zn6TJ`rkD}MzWi-=x zWj<%x2xUdHS$VQ+XbX`*aPkNVqZ#?wJV$nD!#}BxS;iKfWyaRbJ@%5VW@TsY#5~^l zaS>)@-+0VMhbE?jiP>qrD$Om~VphIljoxY-5F2dnZB5i}!M$~>*tnlfZqtcuw2;Y` zPjAw(muzE`5F5;7OQLogOt!#em$8$A!K3K2jNR%0CVR99@~Kb?5hz5U5P?Dj3K1wopb&vV1PT!-M4%9XLIesCC`90YBLejMP%33* zWqxO;bI>{Jw51+(+5r#yonxtH=dg1qwJEjPX+`6Uz}lTQG!Z|^Igb$oWHy5c!M4;U za2@qKM^l^qrG7LW^-n9EK7(p6rglK3b66@RONX3RzjKh9T)QdTc^)*_I7I46|G^v! zlC`zpQ0wRYa4z8-!5?(JKxXl2PT8rXAFjH6I0(vC^x-hvB7Y$FD6u-vq-=8PD7;HZ z|2L<$`O%G}t2mYLItlJ0g9k@`ed7Er%(Xesz@^rJ-_r|e_{G#V@>lgfw@cJJ6{F{r z5jcquyqF&k3UX}I8|hq5Psq_5H%tQzwKOZ7C)}YWL-~XD zd*X3Bypm2q75v&y3F18KrV^CN1j7)ZqixO$|4sEOF8T59_ZBK?Y`0-J4(m*O1_^Tr zqrDk+(RfJ4=~<^WMMFPr8ii3w!9_#{KFI+)$T zfc_(tk}~7l<*fP%hCH=}a+FdQid#R)e>p$g42LtAGO2Hp&5OH5UjNDU?4r?j)AXWY z&rK7`ll=TuDR&sL*nyz+uTky{II7~gRsdQ! zG306irCf4n)J21dR$6$UgAbItND>-yEN3#cXeGvafb|1Qfb;z4k&k(cWUl5T;B42~ zkNHI_67r97^`J~gH7DR-&iuJO*Ei}tt)r}qnzTtYlqCCcXtSJ zUe9LfKMv);RR6PH2Iv591zZET=MDUD322jX0vg?Ti?!R z<@e#>rFUqk_#U}i_|}y8t{rjd@D}h8{W^R~q5E^hu;9`X0u%9>iO+2K(m;ffB@0K6 z{fpwuA0FN;?ihF5pU;>$fyg9Jem8?p3K9{8=y813fW8ut3+dg4&r`7XEPhuZjFBaO zT{QoSOU%TOA>SVguM{WwbO@g>{3@GWKqTh-E5$Q54JlVN!h~yz1V-bTE{3LHOpvyDF?;{33NV7rT^Hw(duGiP@eqX^>D1`_VB2b7x zAp-wT5#aae_`Nw=&Z*G5dQ?Uz;J&y=?_p9|N; zw1)g{+-Egjq6ti&tsP;%PisDYCy?#qr-rgHAATPr`-iwn5`M`f@jl%@{3o5;r5yfc zE%9IK_K!5q{m|a=2Z90H{-FOw?K>Rd* zMWRHM>i0-ByYOrJN)LU8rt|z^{za(xko{wqDGJXkddu1;t`6 z=^vtUCHi}xULfQ?610&B)IjfHPZ)$wzlQd+(j0gxCc2+iCmnxox>xEc5#PO9QRE&O z)sUn!S3it_KG1vHTR<;?etxf)C2Z1DG|F8cnf|Ro^dA_6eryo>Nl7meZ)yMK9v(*i zMbmH53z*!ygZ|zidWIoB<+Bg?muq@b-*Dt}2I!Tblb>Ea^`QIF?kyJR z6TC#=2SC5F2zNiYnpc)r#^Tcg^>{Bnv?>~mhgJ&^8skk>Re?&;{|~2MdBTp2te(0>GbDI1?bY7L{Od;oWnW7(wH%1wp*Tzu=y`<}O(@A7q^S z5Hw8PYA(221n*qDbl%*>!KDiqE;m*LSInKa*a)IymC;)GAB!}^B8_k-6pz-+0}JSA zf^t4#KprOGJ)gjB#i;|IbkaaW{lk%%JOja%Abs*^ggifLIy~mijd##IYGf~ zoT<-7a0#RzXDY0YS0jXR9WHMttL<{CO1i8Y8oU41+fSY6i?Xo%G}L}Kx^IiyuhQJh8+4QtZed5fk}woCTv zP-C?SgxA)=go5#yYI!IUYoyGOY#IroEf%Q>k$|o>)Wk(Vx*0$7RT?9eA`p+P z0ZQo)?s_@afk?GZ`06mUF{X5=%vTazhpA9)6v~u1LM{TBa|5L0inGmmKj+FJ3mJ^yZdFv={TEQdG9$o6PZy%UYD6n`;%OG-XAga zGoyxH`LBSEpS{zvDhu!58Q!evynpBYuqKNTDs(;u%k%!8A$@;Dg?ywc%kw@v3L0(c zSe~C381nN0SY+|W{~Msv-karlzs-=JTiAc*W4HnGw3la`_wx+PrPYi5*JQCB6^bd# z^YaBme!gJ)-u^$X<>zUI{Jg@jMbk;1V&;|K4;saU^}F{ueZS-9IIzg#9sj+c=F0oE z9K!}J$3Qo`W}fiKw`c~2%s-fXt4DsH7GSuN1vO-S44?PN^L~WkL&ff~Sqd@B^YhT|G7wRiPhtHy(|?Bs3K7fm^9Y|~ zc24_G>jxE<<8k~UXvD(u{QW@79mFj}g97fA3Q*bXaTImSmom}qRD z_p2r4io+}K#YbuTrL0gxmY?FGldn{AA?J>2QP=Wv1)Fuk;59%&&yMUrufOzM&AuxM eb?sQ7;14{?*)H?ac77oFuivRS#(4xhsQ530w_cV2 diff --git a/12.Internal-data-representation/build/CMakeCache.txt b/12.Internal-data-representation/build/CMakeCache.txt deleted file mode 100644 index c74bef9..0000000 --- a/12.Internal-data-representation/build/CMakeCache.txt +++ /dev/null @@ -1,337 +0,0 @@ -# This is the CMakeCache file. -# For build in directory: /home/Monreale/git/C/12.Internal-data-representation/build -# It was generated by CMake: /usr/bin/cmake -# You can edit this file to change values found and used by cmake. -# If you do not want to change any of the values, simply exit the editor. -# If you do want to change a value, simply edit, save, and exit the editor. -# The syntax for the file is as follows: -# KEY:TYPE=VALUE -# KEY is the name of a variable in the cache. -# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. -# VALUE is the current value for the KEY. - -######################## -# EXTERNAL cache entries -######################## - -//Value Computed by CMake -12.Internal-data-representation_BINARY_DIR:STATIC=/home/Monreale/git/C/12.Internal-data-representation/build - -//Value Computed by CMake -12.Internal-data-representation_IS_TOP_LEVEL:STATIC=ON - -//Value Computed by CMake -12.Internal-data-representation_SOURCE_DIR:STATIC=/home/Monreale/git/C/12.Internal-data-representation - -//Path to a program. -CMAKE_ADDR2LINE:FILEPATH=/usr/bin/addr2line - -//Path to a program. -CMAKE_AR:FILEPATH=/usr/bin/ar - -//Choose the type of build, options are: None Debug Release RelWithDebInfo -// MinSizeRel ... -CMAKE_BUILD_TYPE:STRING= - -//Enable/Disable color output during build. -CMAKE_COLOR_MAKEFILE:BOOL=ON - -//C compiler -CMAKE_C_COMPILER:FILEPATH=/usr/bin/cc - -//A wrapper around 'ar' adding the appropriate '--plugin' option -// for the GCC compiler -CMAKE_C_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-13 - -//A wrapper around 'ranlib' adding the appropriate '--plugin' option -// for the GCC compiler -CMAKE_C_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-13 - -//Flags used by the C compiler during all build types. -CMAKE_C_FLAGS:STRING= - -//Flags used by the C compiler during DEBUG builds. -CMAKE_C_FLAGS_DEBUG:STRING=-g - -//Flags used by the C compiler during MINSIZEREL builds. -CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG - -//Flags used by the C compiler during RELEASE builds. -CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG - -//Flags used by the C compiler during RELWITHDEBINFO builds. -CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG - -//Path to a program. -CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND - -//Flags used by the linker during all build types. -CMAKE_EXE_LINKER_FLAGS:STRING= - -//Flags used by the linker during DEBUG builds. -CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= - -//Flags used by the linker during MINSIZEREL builds. -CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= - -//Flags used by the linker during RELEASE builds. -CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= - -//Flags used by the linker during RELWITHDEBINFO builds. -CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= - -//Enable/Disable output of compile commands during generation. -CMAKE_EXPORT_COMPILE_COMMANDS:BOOL= - -//Value Computed by CMake. -CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=/home/Monreale/git/C/12.Internal-data-representation/build/CMakeFiles/pkgRedirects - -//Install path prefix, prepended onto install directories. -CMAKE_INSTALL_PREFIX:PATH=/usr/local - -//Path to a program. -CMAKE_LINKER:FILEPATH=/usr/bin/ld - -//Path to a program. -CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/gmake - -//Flags used by the linker during the creation of modules during -// all build types. -CMAKE_MODULE_LINKER_FLAGS:STRING= - -//Flags used by the linker during the creation of modules during -// DEBUG builds. -CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= - -//Flags used by the linker during the creation of modules during -// MINSIZEREL builds. -CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= - -//Flags used by the linker during the creation of modules during -// RELEASE builds. -CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= - -//Flags used by the linker during the creation of modules during -// RELWITHDEBINFO builds. -CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= - -//Path to a program. -CMAKE_NM:FILEPATH=/usr/bin/nm - -//Path to a program. -CMAKE_OBJCOPY:FILEPATH=/usr/bin/objcopy - -//Path to a program. -CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump - -//Value Computed by CMake -CMAKE_PROJECT_DESCRIPTION:STATIC= - -//Value Computed by CMake -CMAKE_PROJECT_HOMEPAGE_URL:STATIC= - -//Value Computed by CMake -CMAKE_PROJECT_NAME:STATIC=12.Internal-data-representation - -//Path to a program. -CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib - -//Path to a program. -CMAKE_READELF:FILEPATH=/usr/bin/readelf - -//Flags used by the linker during the creation of shared libraries -// during all build types. -CMAKE_SHARED_LINKER_FLAGS:STRING= - -//Flags used by the linker during the creation of shared libraries -// during DEBUG builds. -CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= - -//Flags used by the linker during the creation of shared libraries -// during MINSIZEREL builds. -CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= - -//Flags used by the linker during the creation of shared libraries -// during RELEASE builds. -CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= - -//Flags used by the linker during the creation of shared libraries -// during RELWITHDEBINFO builds. -CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= - -//If set, runtime paths are not added when installing shared libraries, -// but are added when building. -CMAKE_SKIP_INSTALL_RPATH:BOOL=NO - -//If set, runtime paths are not added when using shared libraries. -CMAKE_SKIP_RPATH:BOOL=NO - -//Flags used by the linker during the creation of static libraries -// during all build types. -CMAKE_STATIC_LINKER_FLAGS:STRING= - -//Flags used by the linker during the creation of static libraries -// during DEBUG builds. -CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= - -//Flags used by the linker during the creation of static libraries -// during MINSIZEREL builds. -CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= - -//Flags used by the linker during the creation of static libraries -// during RELEASE builds. -CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= - -//Flags used by the linker during the creation of static libraries -// during RELWITHDEBINFO builds. -CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= - -//Path to a program. -CMAKE_STRIP:FILEPATH=/usr/bin/strip - -//Path to a program. -CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND - -//If this value is on, makefiles will be generated without the -// .SILENT directive, and all commands will be echoed to the console -// during the make. This is useful for debugging only. With Visual -// Studio IDE projects all commands are done without /nologo. -CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE - - -######################## -# INTERNAL cache entries -######################## - -//ADVANCED property for variable: CMAKE_ADDR2LINE -CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_AR -CMAKE_AR-ADVANCED:INTERNAL=1 -//This is the directory where this CMakeCache.txt was created -CMAKE_CACHEFILE_DIR:INTERNAL=/home/Monreale/git/C/12.Internal-data-representation/build -//Major version of cmake used to create the current loaded cache -CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 -//Minor version of cmake used to create the current loaded cache -CMAKE_CACHE_MINOR_VERSION:INTERNAL=28 -//Patch version of cmake used to create the current loaded cache -CMAKE_CACHE_PATCH_VERSION:INTERNAL=3 -//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE -CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1 -//Path to CMake executable. -CMAKE_COMMAND:INTERNAL=/usr/bin/cmake -//Path to cpack program executable. -CMAKE_CPACK_COMMAND:INTERNAL=/usr/bin/cpack -//Path to ctest program executable. -CMAKE_CTEST_COMMAND:INTERNAL=/usr/bin/ctest -//ADVANCED property for variable: CMAKE_C_COMPILER -CMAKE_C_COMPILER-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_COMPILER_AR -CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB -CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_FLAGS -CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG -CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL -CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE -CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO -CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_DLLTOOL -CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 -//Executable file format -CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS -CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG -CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL -CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE -CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO -CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS -CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 -//Name of external makefile project generator. -CMAKE_EXTRA_GENERATOR:INTERNAL= -//Name of generator. -CMAKE_GENERATOR:INTERNAL=Unix Makefiles -//Generator instance identifier. -CMAKE_GENERATOR_INSTANCE:INTERNAL= -//Name of generator platform. -CMAKE_GENERATOR_PLATFORM:INTERNAL= -//Name of generator toolset. -CMAKE_GENERATOR_TOOLSET:INTERNAL= -//Source directory with the top level CMakeLists.txt file for this -// project -CMAKE_HOME_DIRECTORY:INTERNAL=/home/Monreale/git/C/12.Internal-data-representation -//Install .so files without execute permission. -CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1 -//ADVANCED property for variable: CMAKE_LINKER -CMAKE_LINKER-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MAKE_PROGRAM -CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS -CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG -CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL -CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE -CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO -CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_NM -CMAKE_NM-ADVANCED:INTERNAL=1 -//number of local generators -CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 -//ADVANCED property for variable: CMAKE_OBJCOPY -CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_OBJDUMP -CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 -//Platform information initialized -CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_RANLIB -CMAKE_RANLIB-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_READELF -CMAKE_READELF-ADVANCED:INTERNAL=1 -//Path to CMake installation. -CMAKE_ROOT:INTERNAL=/usr/share/cmake-3.28 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS -CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG -CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL -CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE -CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO -CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH -CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SKIP_RPATH -CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS -CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG -CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL -CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE -CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO -CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STRIP -CMAKE_STRIP-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_TAPI -CMAKE_TAPI-ADVANCED:INTERNAL=1 -//uname command -CMAKE_UNAME:INTERNAL=/usr/bin/uname -//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE -CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 -//linker supports push/pop state -_CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED:INTERNAL=TRUE - diff --git a/12.Internal-data-representation/build/CMakeFiles/3.28.3/CMakeCCompiler.cmake b/12.Internal-data-representation/build/CMakeFiles/3.28.3/CMakeCCompiler.cmake deleted file mode 100644 index 3766fe1..0000000 --- a/12.Internal-data-representation/build/CMakeFiles/3.28.3/CMakeCCompiler.cmake +++ /dev/null @@ -1,74 +0,0 @@ -set(CMAKE_C_COMPILER "/usr/bin/cc") -set(CMAKE_C_COMPILER_ARG1 "") -set(CMAKE_C_COMPILER_ID "GNU") -set(CMAKE_C_COMPILER_VERSION "13.3.0") -set(CMAKE_C_COMPILER_VERSION_INTERNAL "") -set(CMAKE_C_COMPILER_WRAPPER "") -set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17") -set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON") -set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23") -set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") -set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") -set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") -set(CMAKE_C17_COMPILE_FEATURES "c_std_17") -set(CMAKE_C23_COMPILE_FEATURES "c_std_23") - -set(CMAKE_C_PLATFORM_ID "Linux") -set(CMAKE_C_SIMULATE_ID "") -set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU") -set(CMAKE_C_SIMULATE_VERSION "") - - - - -set(CMAKE_AR "/usr/bin/ar") -set(CMAKE_C_COMPILER_AR "/usr/bin/gcc-ar-13") -set(CMAKE_RANLIB "/usr/bin/ranlib") -set(CMAKE_C_COMPILER_RANLIB "/usr/bin/gcc-ranlib-13") -set(CMAKE_LINKER "/usr/bin/ld") -set(CMAKE_MT "") -set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") -set(CMAKE_COMPILER_IS_GNUCC 1) -set(CMAKE_C_COMPILER_LOADED 1) -set(CMAKE_C_COMPILER_WORKS TRUE) -set(CMAKE_C_ABI_COMPILED TRUE) - -set(CMAKE_C_COMPILER_ENV_VAR "CC") - -set(CMAKE_C_COMPILER_ID_RUN 1) -set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) -set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) -set(CMAKE_C_LINKER_PREFERENCE 10) -set(CMAKE_C_LINKER_DEPFILE_SUPPORTED TRUE) - -# Save compiler ABI information. -set(CMAKE_C_SIZEOF_DATA_PTR "8") -set(CMAKE_C_COMPILER_ABI "ELF") -set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN") -set(CMAKE_C_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") - -if(CMAKE_C_SIZEOF_DATA_PTR) - set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") -endif() - -if(CMAKE_C_COMPILER_ABI) - set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") -endif() - -if(CMAKE_C_LIBRARY_ARCHITECTURE) - set(CMAKE_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") -endif() - -set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") -if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) - set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") -endif() - - - - - -set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/13/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/usr/include") -set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;gcc_s;c;gcc;gcc_s") -set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/13;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib") -set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/12.Internal-data-representation/build/CMakeFiles/3.28.3/CMakeDetermineCompilerABI_C.bin b/12.Internal-data-representation/build/CMakeFiles/3.28.3/CMakeDetermineCompilerABI_C.bin deleted file mode 100755 index 0e5f034156adf9d6d795b655cc52140f256663af..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 15968 zcmeHOYit}>6~4Q9x#ZzZnh=w;&6YN8Lh;y19Fqo_tYfb;iyS8;8xW*nGV2}NBlcl- zXIr~K2nvr{AyufVLXnU{RRI!zQVEeC6~$Fh5r|iQP=XLr8mJURXkF1FQ_?Kw%st;` zJgi$(_<_V+%X{wm&iU@SbLP(Ootb+-n;sm9$6^X)f%<@AEtSwnN({;ONrgm8?NH0< z^Hz0>T1@&vAJg`f7G%}sVtlS_5qtqj=CyI9iM&O_6hRmCkR|ixD>I9<1yadzFwZxM z4jl3+2>=Pa5icnbLozEo$RLk%Gt;hlGd*)uPKPccrzIXF^2s^j z{~eOguL|Fm?yinPzP;dWd)_Sm*s?Ck%`Wlv|9JpV%5t*;;JxNrGu*^ayKy39V@Z|1NM7j6$jgmtcS zO!m?F_#D+_Y?Hj;{G#Xs^L#LGRTEnuVaX=AH4k2z2fvx{cQm-0#+;b|&f^DVHh{}lB21Bt zG7x1T%0QHXC<9Rjq6|bC_&?6TUt4c`-8^x%#XPy_w;f8EUzqmd^>l>dTZKQQWzw-4hf5}W;__#TB**x*bnf=-Hmgy}&F;DgUlp3h7 zsgmofBS!0n&-?8W{x~7#sYQ>lxOdiDL!m#+bqak`{Zi|OB6(|Mnb<&DYJT z8S~kfcA3x4E-+)ynHR2mtEqvF(m+f7lI|Dy+~4CpY*w{<4w)x<;#@VSUi6lkCwmr? za%FS9UcZv3kLMP>L3iD;BgAdQXa1iaAR|`}5pU`k+@$ANt{%E;diQBVh%iGdYuA8cLvK+AEpYu&x?*>09prk^aqF{AbgYNu`z0>0 zzjnP|X8o)zV#M0SF}~rWqSv%4by4i^(6D+)y?cF9i{Qgnb{iQtl&~?%EVsd)HeZ%fE>DJUgz8N{5zl)B3N%Q|bf%W14VT)Lo zx~H#iXL8e_T&?8Ql3TVJ+lD>AN~AP`anGx)WAwBD<5gRg`ZQHI zF0L2gJPu>(W`*$&{M%G%*8it{|Aa~2?m!CJt8lx56 z`)?P=fN0jAr7`xWt0pvVRuit&%Eo$pG;_D_|4xPL33w0T&DN2BjPN9!0`f5*U#nCq z08;gS!dI$-kHBC)C=;`2y=U zQ^EDTf-}cTM@vBm4)pHzpE_E!IiUZeL%n-5eFW1k3oC7k)$Bi@tUZJKcJ~fi`vwLM zrn6SIcQ-w(B*)O+g%q|Zyv4Qzzw3dgr^<5jwr49pN7O7UdeZ_ab9XRU`D)o3vrBp2 z-H_QwUU|1<)v8XO8Y$6-m8({TE88h(M+84u59%%-wX+I1b)w;hzoKcvPJ% zdUlSaSJ83|HMd0jF2GzB~=+T#)~v`1DD&|uJZhdF5$*g_V9i;%#RR&eS_r= zQg{wSm$hH!+t(%L#ykspH&ufC@cu4-9v&?Cz5~X;n?XK)w;_{o6dC4!gz&%790>i# zyblubG4I2?3(eY8;W;1pm={8x7Dw(Q=MH?#=Ul>gssTRcnUMT@9xUPff0B$m#{(bp zI!Mfy(SP_s9wR=_8KGm|2-zvY!~I8}PEmz(3O?qskkjIb_~GOKD%ts%U~l{`$nOK@ z@6wDP3w4&?p#LC0DLhC~8x-h}PlWiLVt|An8h{S@-4H(|2FQHqgn@_lo(l0XZ-B)8 z4gAC7_nh#Nf0YzZkq?UsAuv?+L#lBX!9Ohyko>MISijZ^eGdus?LjKM=Pyz{fm!ww*vK@YC829r(*+;IW7Jjd`b`8Pj}lRCxSz z0T1W#TZFL-_?U-Icd)loDgX1v2l$Y)WD4>dgig&t9JBx)^y^e%4Dm5PO9(&gFNXuV zT0j6};@-f)zo&ud3iv^Zu@iJnNrT^!j`4NOb7%Ai-+z3+g}w**SNKMW%H~kxh^wtU S7jDj9$v-SqmW2o*Rs9o9p%N7U diff --git a/12.Internal-data-representation/build/CMakeFiles/3.28.3/CMakeSystem.cmake b/12.Internal-data-representation/build/CMakeFiles/3.28.3/CMakeSystem.cmake deleted file mode 100644 index 6c21a52..0000000 --- a/12.Internal-data-representation/build/CMakeFiles/3.28.3/CMakeSystem.cmake +++ /dev/null @@ -1,15 +0,0 @@ -set(CMAKE_HOST_SYSTEM "Linux-6.14.0-36-generic") -set(CMAKE_HOST_SYSTEM_NAME "Linux") -set(CMAKE_HOST_SYSTEM_VERSION "6.14.0-36-generic") -set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") - - - -set(CMAKE_SYSTEM "Linux-6.14.0-36-generic") -set(CMAKE_SYSTEM_NAME "Linux") -set(CMAKE_SYSTEM_VERSION "6.14.0-36-generic") -set(CMAKE_SYSTEM_PROCESSOR "x86_64") - -set(CMAKE_CROSSCOMPILING "FALSE") - -set(CMAKE_SYSTEM_LOADED 1) diff --git a/12.Internal-data-representation/build/CMakeFiles/3.28.3/CompilerIdC/CMakeCCompilerId.c b/12.Internal-data-representation/build/CMakeFiles/3.28.3/CompilerIdC/CMakeCCompilerId.c deleted file mode 100644 index 0a0ec9b..0000000 --- a/12.Internal-data-representation/build/CMakeFiles/3.28.3/CompilerIdC/CMakeCCompilerId.c +++ /dev/null @@ -1,880 +0,0 @@ -#ifdef __cplusplus -# error "A C++ compiler has been selected for C." -#endif - -#if defined(__18CXX) -# define ID_VOID_MAIN -#endif -#if defined(__CLASSIC_C__) -/* cv-qualifiers did not exist in K&R C */ -# define const -# define volatile -#endif - -#if !defined(__has_include) -/* If the compiler does not have __has_include, pretend the answer is - always no. */ -# define __has_include(x) 0 -#endif - - -/* Version number components: V=Version, R=Revision, P=Patch - Version date components: YYYY=Year, MM=Month, DD=Day */ - -#if defined(__INTEL_COMPILER) || defined(__ICC) -# define COMPILER_ID "Intel" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# if defined(__GNUC__) -# define SIMULATE_ID "GNU" -# endif - /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, - except that a few beta releases use the old format with V=2021. */ -# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 -# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) -# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) -# if defined(__INTEL_COMPILER_UPDATE) -# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) -# else -# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) -# endif -# else -# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) -# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) - /* The third version component from --version is an update index, - but no macro is provided for it. */ -# define COMPILER_VERSION_PATCH DEC(0) -# endif -# if defined(__INTEL_COMPILER_BUILD_DATE) - /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ -# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) -# endif -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif -# if defined(__GNUC__) -# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) -# elif defined(__GNUG__) -# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) -# endif -# if defined(__GNUC_MINOR__) -# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) -# endif -# if defined(__GNUC_PATCHLEVEL__) -# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -# endif - -#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) -# define COMPILER_ID "IntelLLVM" -#if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -#endif -#if defined(__GNUC__) -# define SIMULATE_ID "GNU" -#endif -/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and - * later. Look for 6 digit vs. 8 digit version number to decide encoding. - * VVVV is no smaller than the current year when a version is released. - */ -#if __INTEL_LLVM_COMPILER < 1000000L -# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) -# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) -#else -# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) -# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) -# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) -#endif -#if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -#endif -#if defined(__GNUC__) -# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) -#elif defined(__GNUG__) -# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) -#endif -#if defined(__GNUC_MINOR__) -# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) -#endif -#if defined(__GNUC_PATCHLEVEL__) -# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -#endif - -#elif defined(__PATHCC__) -# define COMPILER_ID "PathScale" -# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) -# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) -# if defined(__PATHCC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) -# endif - -#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) -# define COMPILER_ID "Embarcadero" -# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) -# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) -# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) - -#elif defined(__BORLANDC__) -# define COMPILER_ID "Borland" - /* __BORLANDC__ = 0xVRR */ -# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) -# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) - -#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 -# define COMPILER_ID "Watcom" - /* __WATCOMC__ = VVRR */ -# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) -# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) -# if (__WATCOMC__ % 10) > 0 -# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) -# endif - -#elif defined(__WATCOMC__) -# define COMPILER_ID "OpenWatcom" - /* __WATCOMC__ = VVRP + 1100 */ -# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) -# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) -# if (__WATCOMC__ % 10) > 0 -# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) -# endif - -#elif defined(__SUNPRO_C) -# define COMPILER_ID "SunPro" -# if __SUNPRO_C >= 0x5100 - /* __SUNPRO_C = 0xVRRP */ -# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) -# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) -# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) -# else - /* __SUNPRO_CC = 0xVRP */ -# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) -# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) -# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) -# endif - -#elif defined(__HP_cc) -# define COMPILER_ID "HP" - /* __HP_cc = VVRRPP */ -# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) -# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) -# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) - -#elif defined(__DECC) -# define COMPILER_ID "Compaq" - /* __DECC_VER = VVRRTPPPP */ -# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) -# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) -# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) - -#elif defined(__IBMC__) && defined(__COMPILER_VER__) -# define COMPILER_ID "zOS" - /* __IBMC__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) - -#elif defined(__open_xl__) && defined(__clang__) -# define COMPILER_ID "IBMClang" -# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__) -# define COMPILER_VERSION_MINOR DEC(__open_xl_release__) -# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__) -# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__) - - -#elif defined(__ibmxl__) && defined(__clang__) -# define COMPILER_ID "XLClang" -# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) -# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) -# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) -# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) - - -#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 -# define COMPILER_ID "XL" - /* __IBMC__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) - -#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 -# define COMPILER_ID "VisualAge" - /* __IBMC__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) - -#elif defined(__NVCOMPILER) -# define COMPILER_ID "NVHPC" -# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) -# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) -# if defined(__NVCOMPILER_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) -# endif - -#elif defined(__PGI) -# define COMPILER_ID "PGI" -# define COMPILER_VERSION_MAJOR DEC(__PGIC__) -# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) -# if defined(__PGIC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) -# endif - -#elif defined(__clang__) && defined(__cray__) -# define COMPILER_ID "CrayClang" -# define COMPILER_VERSION_MAJOR DEC(__cray_major__) -# define COMPILER_VERSION_MINOR DEC(__cray_minor__) -# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__) -# define COMPILER_VERSION_INTERNAL_STR __clang_version__ - - -#elif defined(_CRAYC) -# define COMPILER_ID "Cray" -# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) -# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) - -#elif defined(__TI_COMPILER_VERSION__) -# define COMPILER_ID "TI" - /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ -# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) -# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) -# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) - -#elif defined(__CLANG_FUJITSU) -# define COMPILER_ID "FujitsuClang" -# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) -# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) -# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) -# define COMPILER_VERSION_INTERNAL_STR __clang_version__ - - -#elif defined(__FUJITSU) -# define COMPILER_ID "Fujitsu" -# if defined(__FCC_version__) -# define COMPILER_VERSION __FCC_version__ -# elif defined(__FCC_major__) -# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) -# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) -# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) -# endif -# if defined(__fcc_version) -# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) -# elif defined(__FCC_VERSION) -# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) -# endif - - -#elif defined(__ghs__) -# define COMPILER_ID "GHS" -/* __GHS_VERSION_NUMBER = VVVVRP */ -# ifdef __GHS_VERSION_NUMBER -# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) -# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) -# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) -# endif - -#elif defined(__TASKING__) -# define COMPILER_ID "Tasking" - # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000) - # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100) -# define COMPILER_VERSION_INTERNAL DEC(__VERSION__) - -#elif defined(__ORANGEC__) -# define COMPILER_ID "OrangeC" -# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__) -# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__) -# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__) - -#elif defined(__TINYC__) -# define COMPILER_ID "TinyCC" - -#elif defined(__BCC__) -# define COMPILER_ID "Bruce" - -#elif defined(__SCO_VERSION__) -# define COMPILER_ID "SCO" - -#elif defined(__ARMCC_VERSION) && !defined(__clang__) -# define COMPILER_ID "ARMCC" -#if __ARMCC_VERSION >= 1000000 - /* __ARMCC_VERSION = VRRPPPP */ - # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) - # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) - # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) -#else - /* __ARMCC_VERSION = VRPPPP */ - # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) - # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) - # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) -#endif - - -#elif defined(__clang__) && defined(__apple_build_version__) -# define COMPILER_ID "AppleClang" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# define COMPILER_VERSION_MAJOR DEC(__clang_major__) -# define COMPILER_VERSION_MINOR DEC(__clang_minor__) -# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif -# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) - -#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) -# define COMPILER_ID "ARMClang" - # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) - # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) - # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100) -# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) - -#elif defined(__clang__) -# define COMPILER_ID "Clang" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# define COMPILER_VERSION_MAJOR DEC(__clang_major__) -# define COMPILER_VERSION_MINOR DEC(__clang_minor__) -# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif - -#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__)) -# define COMPILER_ID "LCC" -# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100) -# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100) -# if defined(__LCC_MINOR__) -# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__) -# endif -# if defined(__GNUC__) && defined(__GNUC_MINOR__) -# define SIMULATE_ID "GNU" -# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) -# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) -# if defined(__GNUC_PATCHLEVEL__) -# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -# endif -# endif - -#elif defined(__GNUC__) -# define COMPILER_ID "GNU" -# define COMPILER_VERSION_MAJOR DEC(__GNUC__) -# if defined(__GNUC_MINOR__) -# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) -# endif -# if defined(__GNUC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -# endif - -#elif defined(_MSC_VER) -# define COMPILER_ID "MSVC" - /* _MSC_VER = VVRR */ -# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) -# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) -# if defined(_MSC_FULL_VER) -# if _MSC_VER >= 1400 - /* _MSC_FULL_VER = VVRRPPPPP */ -# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) -# else - /* _MSC_FULL_VER = VVRRPPPP */ -# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) -# endif -# endif -# if defined(_MSC_BUILD) -# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) -# endif - -#elif defined(_ADI_COMPILER) -# define COMPILER_ID "ADSP" -#if defined(__VERSIONNUM__) - /* __VERSIONNUM__ = 0xVVRRPPTT */ -# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF) -# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF) -# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF) -# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF) -#endif - -#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) -# define COMPILER_ID "IAR" -# if defined(__VER__) && defined(__ICCARM__) -# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) -# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) -# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) -# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) -# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) -# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) -# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) -# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) -# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) -# endif - -#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) -# define COMPILER_ID "SDCC" -# if defined(__SDCC_VERSION_MAJOR) -# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR) -# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR) -# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH) -# else - /* SDCC = VRP */ -# define COMPILER_VERSION_MAJOR DEC(SDCC/100) -# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) -# define COMPILER_VERSION_PATCH DEC(SDCC % 10) -# endif - - -/* These compilers are either not known or too old to define an - identification macro. Try to identify the platform and guess that - it is the native compiler. */ -#elif defined(__hpux) || defined(__hpua) -# define COMPILER_ID "HP" - -#else /* unknown compiler */ -# define COMPILER_ID "" -#endif - -/* Construct the string literal in pieces to prevent the source from - getting matched. Store it in a pointer rather than an array - because some compilers will just produce instructions to fill the - array rather than assigning a pointer to a static array. */ -char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; -#ifdef SIMULATE_ID -char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; -#endif - -#ifdef __QNXNTO__ -char const* qnxnto = "INFO" ":" "qnxnto[]"; -#endif - -#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) -char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; -#endif - -#define STRINGIFY_HELPER(X) #X -#define STRINGIFY(X) STRINGIFY_HELPER(X) - -/* Identify known platforms by name. */ -#if defined(__linux) || defined(__linux__) || defined(linux) -# define PLATFORM_ID "Linux" - -#elif defined(__MSYS__) -# define PLATFORM_ID "MSYS" - -#elif defined(__CYGWIN__) -# define PLATFORM_ID "Cygwin" - -#elif defined(__MINGW32__) -# define PLATFORM_ID "MinGW" - -#elif defined(__APPLE__) -# define PLATFORM_ID "Darwin" - -#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) -# define PLATFORM_ID "Windows" - -#elif defined(__FreeBSD__) || defined(__FreeBSD) -# define PLATFORM_ID "FreeBSD" - -#elif defined(__NetBSD__) || defined(__NetBSD) -# define PLATFORM_ID "NetBSD" - -#elif defined(__OpenBSD__) || defined(__OPENBSD) -# define PLATFORM_ID "OpenBSD" - -#elif defined(__sun) || defined(sun) -# define PLATFORM_ID "SunOS" - -#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) -# define PLATFORM_ID "AIX" - -#elif defined(__hpux) || defined(__hpux__) -# define PLATFORM_ID "HP-UX" - -#elif defined(__HAIKU__) -# define PLATFORM_ID "Haiku" - -#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) -# define PLATFORM_ID "BeOS" - -#elif defined(__QNX__) || defined(__QNXNTO__) -# define PLATFORM_ID "QNX" - -#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) -# define PLATFORM_ID "Tru64" - -#elif defined(__riscos) || defined(__riscos__) -# define PLATFORM_ID "RISCos" - -#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) -# define PLATFORM_ID "SINIX" - -#elif defined(__UNIX_SV__) -# define PLATFORM_ID "UNIX_SV" - -#elif defined(__bsdos__) -# define PLATFORM_ID "BSDOS" - -#elif defined(_MPRAS) || defined(MPRAS) -# define PLATFORM_ID "MP-RAS" - -#elif defined(__osf) || defined(__osf__) -# define PLATFORM_ID "OSF1" - -#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) -# define PLATFORM_ID "SCO_SV" - -#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) -# define PLATFORM_ID "ULTRIX" - -#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) -# define PLATFORM_ID "Xenix" - -#elif defined(__WATCOMC__) -# if defined(__LINUX__) -# define PLATFORM_ID "Linux" - -# elif defined(__DOS__) -# define PLATFORM_ID "DOS" - -# elif defined(__OS2__) -# define PLATFORM_ID "OS2" - -# elif defined(__WINDOWS__) -# define PLATFORM_ID "Windows3x" - -# elif defined(__VXWORKS__) -# define PLATFORM_ID "VxWorks" - -# else /* unknown platform */ -# define PLATFORM_ID -# endif - -#elif defined(__INTEGRITY) -# if defined(INT_178B) -# define PLATFORM_ID "Integrity178" - -# else /* regular Integrity */ -# define PLATFORM_ID "Integrity" -# endif - -# elif defined(_ADI_COMPILER) -# define PLATFORM_ID "ADSP" - -#else /* unknown platform */ -# define PLATFORM_ID - -#endif - -/* For windows compilers MSVC and Intel we can determine - the architecture of the compiler being used. This is because - the compilers do not have flags that can change the architecture, - but rather depend on which compiler is being used -*/ -#if defined(_WIN32) && defined(_MSC_VER) -# if defined(_M_IA64) -# define ARCHITECTURE_ID "IA64" - -# elif defined(_M_ARM64EC) -# define ARCHITECTURE_ID "ARM64EC" - -# elif defined(_M_X64) || defined(_M_AMD64) -# define ARCHITECTURE_ID "x64" - -# elif defined(_M_IX86) -# define ARCHITECTURE_ID "X86" - -# elif defined(_M_ARM64) -# define ARCHITECTURE_ID "ARM64" - -# elif defined(_M_ARM) -# if _M_ARM == 4 -# define ARCHITECTURE_ID "ARMV4I" -# elif _M_ARM == 5 -# define ARCHITECTURE_ID "ARMV5I" -# else -# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) -# endif - -# elif defined(_M_MIPS) -# define ARCHITECTURE_ID "MIPS" - -# elif defined(_M_SH) -# define ARCHITECTURE_ID "SHx" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__WATCOMC__) -# if defined(_M_I86) -# define ARCHITECTURE_ID "I86" - -# elif defined(_M_IX86) -# define ARCHITECTURE_ID "X86" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) -# if defined(__ICCARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__ICCRX__) -# define ARCHITECTURE_ID "RX" - -# elif defined(__ICCRH850__) -# define ARCHITECTURE_ID "RH850" - -# elif defined(__ICCRL78__) -# define ARCHITECTURE_ID "RL78" - -# elif defined(__ICCRISCV__) -# define ARCHITECTURE_ID "RISCV" - -# elif defined(__ICCAVR__) -# define ARCHITECTURE_ID "AVR" - -# elif defined(__ICC430__) -# define ARCHITECTURE_ID "MSP430" - -# elif defined(__ICCV850__) -# define ARCHITECTURE_ID "V850" - -# elif defined(__ICC8051__) -# define ARCHITECTURE_ID "8051" - -# elif defined(__ICCSTM8__) -# define ARCHITECTURE_ID "STM8" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__ghs__) -# if defined(__PPC64__) -# define ARCHITECTURE_ID "PPC64" - -# elif defined(__ppc__) -# define ARCHITECTURE_ID "PPC" - -# elif defined(__ARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__x86_64__) -# define ARCHITECTURE_ID "x64" - -# elif defined(__i386__) -# define ARCHITECTURE_ID "X86" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__TI_COMPILER_VERSION__) -# if defined(__TI_ARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__MSP430__) -# define ARCHITECTURE_ID "MSP430" - -# elif defined(__TMS320C28XX__) -# define ARCHITECTURE_ID "TMS320C28x" - -# elif defined(__TMS320C6X__) || defined(_TMS320C6X) -# define ARCHITECTURE_ID "TMS320C6x" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -# elif defined(__ADSPSHARC__) -# define ARCHITECTURE_ID "SHARC" - -# elif defined(__ADSPBLACKFIN__) -# define ARCHITECTURE_ID "Blackfin" - -#elif defined(__TASKING__) - -# if defined(__CTC__) || defined(__CPTC__) -# define ARCHITECTURE_ID "TriCore" - -# elif defined(__CMCS__) -# define ARCHITECTURE_ID "MCS" - -# elif defined(__CARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__CARC__) -# define ARCHITECTURE_ID "ARC" - -# elif defined(__C51__) -# define ARCHITECTURE_ID "8051" - -# elif defined(__CPCP__) -# define ARCHITECTURE_ID "PCP" - -# else -# define ARCHITECTURE_ID "" -# endif - -#else -# define ARCHITECTURE_ID -#endif - -/* Convert integer to decimal digit literals. */ -#define DEC(n) \ - ('0' + (((n) / 10000000)%10)), \ - ('0' + (((n) / 1000000)%10)), \ - ('0' + (((n) / 100000)%10)), \ - ('0' + (((n) / 10000)%10)), \ - ('0' + (((n) / 1000)%10)), \ - ('0' + (((n) / 100)%10)), \ - ('0' + (((n) / 10)%10)), \ - ('0' + ((n) % 10)) - -/* Convert integer to hex digit literals. */ -#define HEX(n) \ - ('0' + ((n)>>28 & 0xF)), \ - ('0' + ((n)>>24 & 0xF)), \ - ('0' + ((n)>>20 & 0xF)), \ - ('0' + ((n)>>16 & 0xF)), \ - ('0' + ((n)>>12 & 0xF)), \ - ('0' + ((n)>>8 & 0xF)), \ - ('0' + ((n)>>4 & 0xF)), \ - ('0' + ((n) & 0xF)) - -/* Construct a string literal encoding the version number. */ -#ifdef COMPILER_VERSION -char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; - -/* Construct a string literal encoding the version number components. */ -#elif defined(COMPILER_VERSION_MAJOR) -char const info_version[] = { - 'I', 'N', 'F', 'O', ':', - 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', - COMPILER_VERSION_MAJOR, -# ifdef COMPILER_VERSION_MINOR - '.', COMPILER_VERSION_MINOR, -# ifdef COMPILER_VERSION_PATCH - '.', COMPILER_VERSION_PATCH, -# ifdef COMPILER_VERSION_TWEAK - '.', COMPILER_VERSION_TWEAK, -# endif -# endif -# endif - ']','\0'}; -#endif - -/* Construct a string literal encoding the internal version number. */ -#ifdef COMPILER_VERSION_INTERNAL -char const info_version_internal[] = { - 'I', 'N', 'F', 'O', ':', - 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', - 'i','n','t','e','r','n','a','l','[', - COMPILER_VERSION_INTERNAL,']','\0'}; -#elif defined(COMPILER_VERSION_INTERNAL_STR) -char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; -#endif - -/* Construct a string literal encoding the version number components. */ -#ifdef SIMULATE_VERSION_MAJOR -char const info_simulate_version[] = { - 'I', 'N', 'F', 'O', ':', - 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', - SIMULATE_VERSION_MAJOR, -# ifdef SIMULATE_VERSION_MINOR - '.', SIMULATE_VERSION_MINOR, -# ifdef SIMULATE_VERSION_PATCH - '.', SIMULATE_VERSION_PATCH, -# ifdef SIMULATE_VERSION_TWEAK - '.', SIMULATE_VERSION_TWEAK, -# endif -# endif -# endif - ']','\0'}; -#endif - -/* Construct the string literal in pieces to prevent the source from - getting matched. Store it in a pointer rather than an array - because some compilers will just produce instructions to fill the - array rather than assigning a pointer to a static array. */ -char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; -char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; - - - -#if !defined(__STDC__) && !defined(__clang__) -# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__) -# define C_VERSION "90" -# else -# define C_VERSION -# endif -#elif __STDC_VERSION__ > 201710L -# define C_VERSION "23" -#elif __STDC_VERSION__ >= 201710L -# define C_VERSION "17" -#elif __STDC_VERSION__ >= 201000L -# define C_VERSION "11" -#elif __STDC_VERSION__ >= 199901L -# define C_VERSION "99" -#else -# define C_VERSION "90" -#endif -const char* info_language_standard_default = - "INFO" ":" "standard_default[" C_VERSION "]"; - -const char* info_language_extensions_default = "INFO" ":" "extensions_default[" -#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \ - defined(__TI_COMPILER_VERSION__)) && \ - !defined(__STRICT_ANSI__) - "ON" -#else - "OFF" -#endif -"]"; - -/*--------------------------------------------------------------------------*/ - -#ifdef ID_VOID_MAIN -void main() {} -#else -# if defined(__CLASSIC_C__) -int main(argc, argv) int argc; char *argv[]; -# else -int main(int argc, char* argv[]) -# endif -{ - int require = 0; - require += info_compiler[argc]; - require += info_platform[argc]; - require += info_arch[argc]; -#ifdef COMPILER_VERSION_MAJOR - require += info_version[argc]; -#endif -#ifdef COMPILER_VERSION_INTERNAL - require += info_version_internal[argc]; -#endif -#ifdef SIMULATE_ID - require += info_simulate[argc]; -#endif -#ifdef SIMULATE_VERSION_MAJOR - require += info_simulate_version[argc]; -#endif -#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) - require += info_cray[argc]; -#endif - require += info_language_standard_default[argc]; - require += info_language_extensions_default[argc]; - (void)argv; - return require; -} -#endif diff --git a/12.Internal-data-representation/build/CMakeFiles/3.28.3/CompilerIdC/a.out b/12.Internal-data-representation/build/CMakeFiles/3.28.3/CompilerIdC/a.out deleted file mode 100755 index ecc315e71b4e62a6558ef29ebb804b7c2bdf9e59..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 16088 zcmeHOe{38_6`ngMjYE^zaci6=rP;IzN=Uu29mjQp(p+Mnvqp9j5(k8muv+`p_KEvp z?)Io%K^v4(V$w)0MGy&)stQr@qY_A{i2P9;6$M%fG!jz7KPW&e1u3LPKxNt}$9psH zJD-7; zK*W<{!vEb8&oH)$8(`ROTb!ylL3F6FF$Y{MN-?OT7(+27YSKXUDz+23sYdea8h;dZkP>u_R! z7$Pilp6g^C6OYeRPR2IjMgP}XO)PR?yQUgtJ;Yfxcy|##w+Me5@psqoqgX7be#lo`%<=6~`v&^=_P8B(hrOec-`=U*{-HrPH5EC6G5u$HDn>H57vrV0Hocsq&f|}{A3gb13Ui$9 zcqZXG#`R;ZHvF7i-{3Ec!}^3N2M@V1#9NlpTNC07!doH!i^6XX@lOfg7UG{1{?cxx z6OSDp3rLr%cphU&SE_i7Z7!Rw;(6R6%~kRGev5(#qXbCT{+Isgi=T9+|LB~2efHo`vVErgCFjhpm&rl7xk##iAGI6SKdSu^f1ViU%+hlV z_s<2*RQ1O=PgO53Uv5}`f)!sBB>g9~{*Es(Y`Nh~&pPL??RL)3)j6>X&cz$S?c`vS zIH)gQHtm8vxA(-ZK`K_Itw)@byW*U6rr!uwIHz~rLc*0T<#PE-iVhdFo7i!(t<=x< ze}0e(Idg>UrayPpnJ!)adGb0p(>dMzGCirEPF{7+IvVo%*2w{i9fdp|J_== zad4*jxm6VA=a)2AygXVBC<0Lgq6qvyM}WV7-7NL*?>n$_B%hr~XZ*rZ`YL&Rq4t7u_cMN>n9k>pw&~Qq z-8PxFN~Z0&(iRgLFBr`ivPTE_>#C4mVPyQMif!<(sj{5@*u&2sq|VTzF7JOqUFxJxb?yM6KeO``#-dO zBY#HJ_FV5J=rKu&eFpUZ6Y~2VCX%ZfAB*>_ye0lL)yzbcq6kD0h$0Y0Ac{Z~fhYn| z1fmE;5r`u2-bMiH6|p`MYXJ4b3stoO)yewBl_LLE);ZoGGS)$^6B&;%YemL-NPh0& zgz|sfDCb%Jfh;D(8o_aXXrsjI5;&0=!;z&&5CE$Q)6pWm#U&p$> zHFk`i?lG=4Nr%tUKi7-v3j8U`#MEsH*9rJ%DO0Qci=Edw?Wakd+5ivpSj*2Zv_4%G zp>c6ho2{;_w}+S4wf_4n*9-W!Dboa@3R@^3R+WtGUd^{Cl>lRKJMoRGr4mn+?j*h` z-k@+_0iO{4u%AKgA6oNxjQG{@7KQPPk~H&Fv$6~$m!q20e2ZF>Fg&iy$Ak~Bn|_w~ zMj8(Z(Kl8~^%37h{hp9UTp__)GRf=M~m} zP5f^T`G1Re3r?$$_ch#IB_q3)_@+4BO+(j3JMkR1gk>~4#NYwVweS z?L4i(_lDDM;EgFFia}{~)E-gutM%O=>yGex{UT|m^6pqBKkQ}PRFE$eU9U8$_#I=$ z5B!wfR$GI23Zz}HQ1GT)KNl3H)M&xW`fjR}%}$X?mE@9Uut2qE(EF6%(pkYx>rn7XK#Nik43FM?iI(Cotnx~6$XQXDM355ng}kH75t3H2Fm7z8rgEiy*uD} z8Ql^pZ}-Fd>@Y7wEv#Fe?jeEaPITGpwAg+!DXz@#Aa_xw+CIFmY$Fr}aeoHQzr)q` zmbJ+&vRACn6Cocr1Eh4(WWz$;h4f6^JgID z&!|6q{$C?oJ|~n{erM$O2G0$oqEop4zDaDgy(M-)5yg7`XAJx^A^SEd074HAAOpV_ zvQJ0>@XMhNgB|?+Fl3K;4iL{(&<~&gkHsGGSC(iBz9b?*Xo%{kl;bAC{uNOG-doW$ znQ;BTBD&gsPV9kS3E89nLBB>BTFYA54~cm&_F;zgAp`$JwhdMGn0L>$5=jYqMw*ww zzexo=_T=$lem+d=W;xAB|MB?e1UvNOw~1pF*yDL}W*ciOmC(oe1MGowR8(zWF=#V3 z-Seh82RqO=D8n4;$2_oG?8EwUIxtstL@+1n6(06mD~!p&z8W!hs#V9uA?|~G9rJSn u+JpPwa^leTYWoC#M5ToN&qgwBMV^tT!?o;B@ed276= search starts here: - /usr/lib/gcc/x86_64-linux-gnu/13/include - /usr/local/include - /usr/include/x86_64-linux-gnu - /usr/include - End of search list. - Compiler executable checksum: 38987c28e967c64056a6454abdef726e - COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_63deb.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_63deb.dir/' - as -v --64 -o CMakeFiles/cmTC_63deb.dir/CMakeCCompilerABI.c.o /tmp/cchskPDI.s - GNU assembler version 2.42 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.42 - COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/ - LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/ - COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_63deb.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_63deb.dir/CMakeCCompilerABI.c.' - Linking C executable cmTC_63deb - /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_63deb.dir/link.txt --verbose=1 - /usr/bin/cc -v CMakeFiles/cmTC_63deb.dir/CMakeCCompilerABI.c.o -o cmTC_63deb - Using built-in specs. - COLLECT_GCC=/usr/bin/cc - COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper - OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa - OFFLOAD_TARGET_DEFAULT=1 - Target: x86_64-linux-gnu - Configured with: ../src/configure -v --with-pkgversion='Ubuntu 13.3.0-6ubuntu2~24.04' --with-bugurl=file:///usr/share/doc/gcc-13/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-13 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/libexec --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-libstdcxx-backtrace --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-13-fG75Ri/gcc-13-13.3.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-13-fG75Ri/gcc-13-13.3.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2 - Thread model: posix - Supported LTO compression algorithms: zlib zstd - gcc version 13.3.0 (Ubuntu 13.3.0-6ubuntu2~24.04) - COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/ - LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/ - COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_63deb' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_63deb.' - /usr/libexec/gcc/x86_64-linux-gnu/13/collect2 -plugin /usr/libexec/gcc/x86_64-linux-gnu/13/liblto_plugin.so -plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -plugin-opt=-fresolution=/tmp/ccgiNdhA.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_63deb /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/13 -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/13/../../.. CMakeFiles/cmTC_63deb.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o - COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_63deb' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_63deb.' - gmake[1]: Leaving directory '/home/Monreale/git/C/12.Internal-data-representation/build/CMakeFiles/CMakeScratch/TryCompile-NGIkom' - - exitCode: 0 - - - kind: "message-v1" - backtrace: - - "/usr/share/cmake-3.28/Modules/CMakeDetermineCompilerABI.cmake:127 (message)" - - "/usr/share/cmake-3.28/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "CMakeLists.txt:2 (project)" - message: | - Parsed C implicit include dir info: rv=done - found start of include info - found start of implicit include info - add: [/usr/lib/gcc/x86_64-linux-gnu/13/include] - add: [/usr/local/include] - add: [/usr/include/x86_64-linux-gnu] - add: [/usr/include] - end of search list found - collapse include dir [/usr/lib/gcc/x86_64-linux-gnu/13/include] ==> [/usr/lib/gcc/x86_64-linux-gnu/13/include] - collapse include dir [/usr/local/include] ==> [/usr/local/include] - collapse include dir [/usr/include/x86_64-linux-gnu] ==> [/usr/include/x86_64-linux-gnu] - collapse include dir [/usr/include] ==> [/usr/include] - implicit include dirs: [/usr/lib/gcc/x86_64-linux-gnu/13/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/usr/include] - - - - - kind: "message-v1" - backtrace: - - "/usr/share/cmake-3.28/Modules/CMakeDetermineCompilerABI.cmake:159 (message)" - - "/usr/share/cmake-3.28/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "CMakeLists.txt:2 (project)" - message: | - Parsed C implicit link information: - link line regex: [^( *|.*[/\\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] - ignore line: [Change Dir: '/home/Monreale/git/C/12.Internal-data-representation/build/CMakeFiles/CMakeScratch/TryCompile-NGIkom'] - ignore line: [] - ignore line: [Run Build Command(s): /usr/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_63deb/fast] - ignore line: [/usr/bin/gmake -f CMakeFiles/cmTC_63deb.dir/build.make CMakeFiles/cmTC_63deb.dir/build] - ignore line: [gmake[1]: Entering directory '/home/Monreale/git/C/12.Internal-data-representation/build/CMakeFiles/CMakeScratch/TryCompile-NGIkom'] - ignore line: [Building C object CMakeFiles/cmTC_63deb.dir/CMakeCCompilerABI.c.o] - ignore line: [/usr/bin/cc -v -o CMakeFiles/cmTC_63deb.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.28/Modules/CMakeCCompilerABI.c] - ignore line: [Using built-in specs.] - ignore line: [COLLECT_GCC=/usr/bin/cc] - ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa] - ignore line: [OFFLOAD_TARGET_DEFAULT=1] - ignore line: [Target: x86_64-linux-gnu] - ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 13.3.0-6ubuntu2~24.04' --with-bugurl=file:///usr/share/doc/gcc-13/README.Bugs --enable-languages=c ada c++ go d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-13 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/libexec --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-libstdcxx-backtrace --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-13-fG75Ri/gcc-13-13.3.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-13-fG75Ri/gcc-13-13.3.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2] - ignore line: [Thread model: posix] - ignore line: [Supported LTO compression algorithms: zlib zstd] - ignore line: [gcc version 13.3.0 (Ubuntu 13.3.0-6ubuntu2~24.04) ] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_63deb.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_63deb.dir/'] - ignore line: [ /usr/libexec/gcc/x86_64-linux-gnu/13/cc1 -quiet -v -imultiarch x86_64-linux-gnu /usr/share/cmake-3.28/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_63deb.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mtune=generic -march=x86-64 -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/cchskPDI.s] - ignore line: [GNU C17 (Ubuntu 13.3.0-6ubuntu2~24.04) version 13.3.0 (x86_64-linux-gnu)] - ignore line: [ compiled by GNU C version 13.3.0 GMP version 6.3.0 MPFR version 4.2.1 MPC version 1.3.1 isl version isl-0.26-GMP] - ignore line: [] - ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] - ignore line: [ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"] - ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/13/include-fixed/x86_64-linux-gnu"] - ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/13/include-fixed"] - ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/13/../../../../x86_64-linux-gnu/include"] - ignore line: [#include "..." search starts here:] - ignore line: [#include <...> search starts here:] - ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/13/include] - ignore line: [ /usr/local/include] - ignore line: [ /usr/include/x86_64-linux-gnu] - ignore line: [ /usr/include] - ignore line: [End of search list.] - ignore line: [Compiler executable checksum: 38987c28e967c64056a6454abdef726e] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_63deb.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_63deb.dir/'] - ignore line: [ as -v --64 -o CMakeFiles/cmTC_63deb.dir/CMakeCCompilerABI.c.o /tmp/cchskPDI.s] - ignore line: [GNU assembler version 2.42 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.42] - ignore line: [COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/] - ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_63deb.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_63deb.dir/CMakeCCompilerABI.c.'] - ignore line: [Linking C executable cmTC_63deb] - ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_63deb.dir/link.txt --verbose=1] - ignore line: [/usr/bin/cc -v CMakeFiles/cmTC_63deb.dir/CMakeCCompilerABI.c.o -o cmTC_63deb ] - ignore line: [Using built-in specs.] - ignore line: [COLLECT_GCC=/usr/bin/cc] - ignore line: [COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper] - ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa] - ignore line: [OFFLOAD_TARGET_DEFAULT=1] - ignore line: [Target: x86_64-linux-gnu] - ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 13.3.0-6ubuntu2~24.04' --with-bugurl=file:///usr/share/doc/gcc-13/README.Bugs --enable-languages=c ada c++ go d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-13 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/libexec --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-libstdcxx-backtrace --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-13-fG75Ri/gcc-13-13.3.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-13-fG75Ri/gcc-13-13.3.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2] - ignore line: [Thread model: posix] - ignore line: [Supported LTO compression algorithms: zlib zstd] - ignore line: [gcc version 13.3.0 (Ubuntu 13.3.0-6ubuntu2~24.04) ] - ignore line: [COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/13/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/] - ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/13/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/13/../../../:/lib/:/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_63deb' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_63deb.'] - link line: [ /usr/libexec/gcc/x86_64-linux-gnu/13/collect2 -plugin /usr/libexec/gcc/x86_64-linux-gnu/13/liblto_plugin.so -plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper -plugin-opt=-fresolution=/tmp/ccgiNdhA.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_63deb /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/13 -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/13/../../.. CMakeFiles/cmTC_63deb.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o] - arg [/usr/libexec/gcc/x86_64-linux-gnu/13/collect2] ==> ignore - arg [-plugin] ==> ignore - arg [/usr/libexec/gcc/x86_64-linux-gnu/13/liblto_plugin.so] ==> ignore - arg [-plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/13/lto-wrapper] ==> ignore - arg [-plugin-opt=-fresolution=/tmp/ccgiNdhA.res] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore - arg [-plugin-opt=-pass-through=-lc] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore - arg [--build-id] ==> ignore - arg [--eh-frame-hdr] ==> ignore - arg [-m] ==> ignore - arg [elf_x86_64] ==> ignore - arg [--hash-style=gnu] ==> ignore - arg [--as-needed] ==> ignore - arg [-dynamic-linker] ==> ignore - arg [/lib64/ld-linux-x86-64.so.2] ==> ignore - arg [-pie] ==> ignore - arg [-znow] ==> ignore - arg [-zrelro] ==> ignore - arg [-o] ==> ignore - arg [cmTC_63deb] ==> ignore - arg [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o] - arg [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o] - arg [/usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o] - arg [-L/usr/lib/gcc/x86_64-linux-gnu/13] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/13] - arg [-L/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu] - arg [-L/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib] - arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] - arg [-L/lib/../lib] ==> dir [/lib/../lib] - arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] - arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] - arg [-L/usr/lib/gcc/x86_64-linux-gnu/13/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../..] - arg [CMakeFiles/cmTC_63deb.dir/CMakeCCompilerABI.c.o] ==> ignore - arg [-lgcc] ==> lib [gcc] - arg [--push-state] ==> ignore - arg [--as-needed] ==> ignore - arg [-lgcc_s] ==> lib [gcc_s] - arg [--pop-state] ==> ignore - arg [-lc] ==> lib [c] - arg [-lgcc] ==> lib [gcc] - arg [--push-state] ==> ignore - arg [--as-needed] ==> ignore - arg [-lgcc_s] ==> lib [gcc_s] - arg [--pop-state] ==> ignore - arg [/usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o] - arg [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o] - collapse obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/Scrt1.o] ==> [/usr/lib/x86_64-linux-gnu/Scrt1.o] - collapse obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crti.o] ==> [/usr/lib/x86_64-linux-gnu/crti.o] - collapse obj [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu/crtn.o] ==> [/usr/lib/x86_64-linux-gnu/crtn.o] - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/13] ==> [/usr/lib/gcc/x86_64-linux-gnu/13] - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../../../lib] ==> [/usr/lib] - collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] - collapse library dir [/lib/../lib] ==> [/lib] - collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] - collapse library dir [/usr/lib/../lib] ==> [/usr/lib] - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/13/../../..] ==> [/usr/lib] - implicit libs: [gcc;gcc_s;c;gcc;gcc_s] - implicit objs: [/usr/lib/x86_64-linux-gnu/Scrt1.o;/usr/lib/x86_64-linux-gnu/crti.o;/usr/lib/gcc/x86_64-linux-gnu/13/crtbeginS.o;/usr/lib/gcc/x86_64-linux-gnu/13/crtendS.o;/usr/lib/x86_64-linux-gnu/crtn.o] - implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/13;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] - implicit fwks: [] - - -... diff --git a/12.Internal-data-representation/build/CMakeFiles/CMakeDirectoryInformation.cmake b/12.Internal-data-representation/build/CMakeFiles/CMakeDirectoryInformation.cmake deleted file mode 100644 index ee1707a..0000000 --- a/12.Internal-data-representation/build/CMakeFiles/CMakeDirectoryInformation.cmake +++ /dev/null @@ -1,16 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.28 - -# Relative path conversion top directories. -set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/Monreale/git/C/12.Internal-data-representation") -set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/Monreale/git/C/12.Internal-data-representation/build") - -# Force unix paths in dependencies. -set(CMAKE_FORCE_UNIX_PATHS 1) - - -# The C and CXX include file regular expressions for this directory. -set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") -set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") -set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) -set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/12.Internal-data-representation/build/CMakeFiles/Makefile.cmake b/12.Internal-data-representation/build/CMakeFiles/Makefile.cmake deleted file mode 100644 index 6d75f07..0000000 --- a/12.Internal-data-representation/build/CMakeFiles/Makefile.cmake +++ /dev/null @@ -1,108 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.28 - -# The generator used is: -set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles") - -# The top level Makefile was generated from the following files: -set(CMAKE_MAKEFILE_DEPENDS - "CMakeCache.txt" - "/home/Monreale/git/C/12.Internal-data-representation/CMakeLists.txt" - "CMakeFiles/3.28.3/CMakeCCompiler.cmake" - "CMakeFiles/3.28.3/CMakeSystem.cmake" - "/usr/share/cmake-3.28/Modules/CMakeCCompiler.cmake.in" - "/usr/share/cmake-3.28/Modules/CMakeCCompilerABI.c" - "/usr/share/cmake-3.28/Modules/CMakeCInformation.cmake" - "/usr/share/cmake-3.28/Modules/CMakeCommonLanguageInclude.cmake" - "/usr/share/cmake-3.28/Modules/CMakeCompilerIdDetection.cmake" - "/usr/share/cmake-3.28/Modules/CMakeDetermineCCompiler.cmake" - "/usr/share/cmake-3.28/Modules/CMakeDetermineCompileFeatures.cmake" - "/usr/share/cmake-3.28/Modules/CMakeDetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/CMakeDetermineCompilerABI.cmake" - "/usr/share/cmake-3.28/Modules/CMakeDetermineCompilerId.cmake" - "/usr/share/cmake-3.28/Modules/CMakeDetermineSystem.cmake" - "/usr/share/cmake-3.28/Modules/CMakeFindBinUtils.cmake" - "/usr/share/cmake-3.28/Modules/CMakeGenericSystem.cmake" - "/usr/share/cmake-3.28/Modules/CMakeInitializeConfigs.cmake" - "/usr/share/cmake-3.28/Modules/CMakeLanguageInformation.cmake" - "/usr/share/cmake-3.28/Modules/CMakeParseImplicitIncludeInfo.cmake" - "/usr/share/cmake-3.28/Modules/CMakeParseImplicitLinkInfo.cmake" - "/usr/share/cmake-3.28/Modules/CMakeParseLibraryArchitecture.cmake" - "/usr/share/cmake-3.28/Modules/CMakeSystem.cmake.in" - "/usr/share/cmake-3.28/Modules/CMakeSystemSpecificInformation.cmake" - "/usr/share/cmake-3.28/Modules/CMakeSystemSpecificInitialize.cmake" - "/usr/share/cmake-3.28/Modules/CMakeTestCCompiler.cmake" - "/usr/share/cmake-3.28/Modules/CMakeTestCompilerCommon.cmake" - "/usr/share/cmake-3.28/Modules/CMakeUnixFindMake.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/ADSP-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/ARMCC-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/ARMClang-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/AppleClang-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/Borland-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/Bruce-C-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/CMakeCommonCompilerMacros.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/Clang-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/Compaq-C-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/Cray-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/CrayClang-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/GHS-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/GNU-C-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/GNU-C.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/GNU-FindBinUtils.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/GNU.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/HP-C-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/IAR-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/Intel-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/LCC-C-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/MSVC-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/NVHPC-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/OrangeC-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/PGI-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/PathScale-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/SCO-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/SDCC-C-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/SunPro-C-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/TI-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/Tasking-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/Watcom-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/XL-C-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/XLClang-C-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Compiler/zOS-C-DetermineCompiler.cmake" - "/usr/share/cmake-3.28/Modules/Internal/FeatureTesting.cmake" - "/usr/share/cmake-3.28/Modules/Platform/Linux-GNU-C.cmake" - "/usr/share/cmake-3.28/Modules/Platform/Linux-GNU.cmake" - "/usr/share/cmake-3.28/Modules/Platform/Linux-Initialize.cmake" - "/usr/share/cmake-3.28/Modules/Platform/Linux.cmake" - "/usr/share/cmake-3.28/Modules/Platform/UnixPaths.cmake" - ) - -# The corresponding makefile is: -set(CMAKE_MAKEFILE_OUTPUTS - "Makefile" - "CMakeFiles/cmake.check_cache" - ) - -# Byproducts of CMake generate step: -set(CMAKE_MAKEFILE_PRODUCTS - "CMakeFiles/3.28.3/CMakeSystem.cmake" - "CMakeFiles/3.28.3/CMakeCCompiler.cmake" - "CMakeFiles/3.28.3/CMakeCCompiler.cmake" - "CMakeFiles/CMakeDirectoryInformation.cmake" - ) - -# Dependency information for all targets: -set(CMAKE_DEPEND_INFO_FILES - "CMakeFiles/binary_converter.dir/DependInfo.cmake" - "CMakeFiles/double_converter.dir/DependInfo.cmake" - ) diff --git a/12.Internal-data-representation/build/CMakeFiles/Makefile2 b/12.Internal-data-representation/build/CMakeFiles/Makefile2 deleted file mode 100644 index 935cfc9..0000000 --- a/12.Internal-data-representation/build/CMakeFiles/Makefile2 +++ /dev/null @@ -1,140 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.28 - -# Default target executed when no arguments are given to make. -default_target: all -.PHONY : default_target - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /usr/bin/cmake - -# The command to remove a file. -RM = /usr/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /home/Monreale/git/C/12.Internal-data-representation - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /home/Monreale/git/C/12.Internal-data-representation/build - -#============================================================================= -# Directory level rules for the build root directory - -# The main recursive "all" target. -all: CMakeFiles/binary_converter.dir/all -all: CMakeFiles/double_converter.dir/all -.PHONY : all - -# The main recursive "preinstall" target. -preinstall: -.PHONY : preinstall - -# The main recursive "clean" target. -clean: CMakeFiles/binary_converter.dir/clean -clean: CMakeFiles/double_converter.dir/clean -.PHONY : clean - -#============================================================================= -# Target rules for target CMakeFiles/binary_converter.dir - -# All Build rule for target. -CMakeFiles/binary_converter.dir/all: - $(MAKE) $(MAKESILENT) -f CMakeFiles/binary_converter.dir/build.make CMakeFiles/binary_converter.dir/depend - $(MAKE) $(MAKESILENT) -f CMakeFiles/binary_converter.dir/build.make CMakeFiles/binary_converter.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/Monreale/git/C/12.Internal-data-representation/build/CMakeFiles --progress-num=1,2,3 "Built target binary_converter" -.PHONY : CMakeFiles/binary_converter.dir/all - -# Build rule for subdir invocation for target. -CMakeFiles/binary_converter.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /home/Monreale/git/C/12.Internal-data-representation/build/CMakeFiles 3 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/binary_converter.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /home/Monreale/git/C/12.Internal-data-representation/build/CMakeFiles 0 -.PHONY : CMakeFiles/binary_converter.dir/rule - -# Convenience name for target. -binary_converter: CMakeFiles/binary_converter.dir/rule -.PHONY : binary_converter - -# clean rule for target. -CMakeFiles/binary_converter.dir/clean: - $(MAKE) $(MAKESILENT) -f CMakeFiles/binary_converter.dir/build.make CMakeFiles/binary_converter.dir/clean -.PHONY : CMakeFiles/binary_converter.dir/clean - -#============================================================================= -# Target rules for target CMakeFiles/double_converter.dir - -# All Build rule for target. -CMakeFiles/double_converter.dir/all: - $(MAKE) $(MAKESILENT) -f CMakeFiles/double_converter.dir/build.make CMakeFiles/double_converter.dir/depend - $(MAKE) $(MAKESILENT) -f CMakeFiles/double_converter.dir/build.make CMakeFiles/double_converter.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/Monreale/git/C/12.Internal-data-representation/build/CMakeFiles --progress-num=4,5 "Built target double_converter" -.PHONY : CMakeFiles/double_converter.dir/all - -# Build rule for subdir invocation for target. -CMakeFiles/double_converter.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /home/Monreale/git/C/12.Internal-data-representation/build/CMakeFiles 2 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/double_converter.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /home/Monreale/git/C/12.Internal-data-representation/build/CMakeFiles 0 -.PHONY : CMakeFiles/double_converter.dir/rule - -# Convenience name for target. -double_converter: CMakeFiles/double_converter.dir/rule -.PHONY : double_converter - -# clean rule for target. -CMakeFiles/double_converter.dir/clean: - $(MAKE) $(MAKESILENT) -f CMakeFiles/double_converter.dir/build.make CMakeFiles/double_converter.dir/clean -.PHONY : CMakeFiles/double_converter.dir/clean - -#============================================================================= -# Special targets to cleanup operation of make. - -# Special rule to run CMake to check the build system integrity. -# No rule that depends on this can have commands that come from listfiles -# because they might be regenerated. -cmake_check_build_system: - $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/12.Internal-data-representation/build/CMakeFiles/TargetDirectories.txt b/12.Internal-data-representation/build/CMakeFiles/TargetDirectories.txt deleted file mode 100644 index 311b6d1..0000000 --- a/12.Internal-data-representation/build/CMakeFiles/TargetDirectories.txt +++ /dev/null @@ -1,4 +0,0 @@ -/home/Monreale/git/C/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir -/home/Monreale/git/C/12.Internal-data-representation/build/CMakeFiles/double_converter.dir -/home/Monreale/git/C/12.Internal-data-representation/build/CMakeFiles/edit_cache.dir -/home/Monreale/git/C/12.Internal-data-representation/build/CMakeFiles/rebuild_cache.dir diff --git a/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/DependInfo.cmake b/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/DependInfo.cmake deleted file mode 100644 index 50c3161..0000000 --- a/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/DependInfo.cmake +++ /dev/null @@ -1,24 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/home/Monreale/git/C/12.Internal-data-representation/src/Task_1/binary.c" "CMakeFiles/binary_converter.dir/src/Task_1/binary.c.o" "gcc" "CMakeFiles/binary_converter.dir/src/Task_1/binary.c.o.d" - "/home/Monreale/git/C/12.Internal-data-representation/src/Task_1/main.c" "CMakeFiles/binary_converter.dir/src/Task_1/main.c.o" "gcc" "CMakeFiles/binary_converter.dir/src/Task_1/main.c.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/build.make b/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/build.make deleted file mode 100644 index e5154b1..0000000 --- a/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/build.make +++ /dev/null @@ -1,126 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.28 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /usr/bin/cmake - -# The command to remove a file. -RM = /usr/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /home/Monreale/git/C/12.Internal-data-representation - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /home/Monreale/git/C/12.Internal-data-representation/build - -# Include any dependencies generated for this target. -include CMakeFiles/binary_converter.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include CMakeFiles/binary_converter.dir/compiler_depend.make - -# Include the progress variables for this target. -include CMakeFiles/binary_converter.dir/progress.make - -# Include the compile flags for this target's objects. -include CMakeFiles/binary_converter.dir/flags.make - -CMakeFiles/binary_converter.dir/src/Task_1/main.c.o: CMakeFiles/binary_converter.dir/flags.make -CMakeFiles/binary_converter.dir/src/Task_1/main.c.o: /home/Monreale/git/C/12.Internal-data-representation/src/Task_1/main.c -CMakeFiles/binary_converter.dir/src/Task_1/main.c.o: CMakeFiles/binary_converter.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/Monreale/git/C/12.Internal-data-representation/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object CMakeFiles/binary_converter.dir/src/Task_1/main.c.o" - /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/binary_converter.dir/src/Task_1/main.c.o -MF CMakeFiles/binary_converter.dir/src/Task_1/main.c.o.d -o CMakeFiles/binary_converter.dir/src/Task_1/main.c.o -c /home/Monreale/git/C/12.Internal-data-representation/src/Task_1/main.c - -CMakeFiles/binary_converter.dir/src/Task_1/main.c.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/binary_converter.dir/src/Task_1/main.c.i" - /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/Monreale/git/C/12.Internal-data-representation/src/Task_1/main.c > CMakeFiles/binary_converter.dir/src/Task_1/main.c.i - -CMakeFiles/binary_converter.dir/src/Task_1/main.c.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/binary_converter.dir/src/Task_1/main.c.s" - /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/Monreale/git/C/12.Internal-data-representation/src/Task_1/main.c -o CMakeFiles/binary_converter.dir/src/Task_1/main.c.s - -CMakeFiles/binary_converter.dir/src/Task_1/binary.c.o: CMakeFiles/binary_converter.dir/flags.make -CMakeFiles/binary_converter.dir/src/Task_1/binary.c.o: /home/Monreale/git/C/12.Internal-data-representation/src/Task_1/binary.c -CMakeFiles/binary_converter.dir/src/Task_1/binary.c.o: CMakeFiles/binary_converter.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/Monreale/git/C/12.Internal-data-representation/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building C object CMakeFiles/binary_converter.dir/src/Task_1/binary.c.o" - /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/binary_converter.dir/src/Task_1/binary.c.o -MF CMakeFiles/binary_converter.dir/src/Task_1/binary.c.o.d -o CMakeFiles/binary_converter.dir/src/Task_1/binary.c.o -c /home/Monreale/git/C/12.Internal-data-representation/src/Task_1/binary.c - -CMakeFiles/binary_converter.dir/src/Task_1/binary.c.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/binary_converter.dir/src/Task_1/binary.c.i" - /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/Monreale/git/C/12.Internal-data-representation/src/Task_1/binary.c > CMakeFiles/binary_converter.dir/src/Task_1/binary.c.i - -CMakeFiles/binary_converter.dir/src/Task_1/binary.c.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/binary_converter.dir/src/Task_1/binary.c.s" - /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/Monreale/git/C/12.Internal-data-representation/src/Task_1/binary.c -o CMakeFiles/binary_converter.dir/src/Task_1/binary.c.s - -# Object files for target binary_converter -binary_converter_OBJECTS = \ -"CMakeFiles/binary_converter.dir/src/Task_1/main.c.o" \ -"CMakeFiles/binary_converter.dir/src/Task_1/binary.c.o" - -# External object files for target binary_converter -binary_converter_EXTERNAL_OBJECTS = - -Binary_representation: CMakeFiles/binary_converter.dir/src/Task_1/main.c.o -Binary_representation: CMakeFiles/binary_converter.dir/src/Task_1/binary.c.o -Binary_representation: CMakeFiles/binary_converter.dir/build.make -Binary_representation: CMakeFiles/binary_converter.dir/link.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/home/Monreale/git/C/12.Internal-data-representation/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking C executable Binary_representation" - $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/binary_converter.dir/link.txt --verbose=$(VERBOSE) - -# Rule to build all files generated by this target. -CMakeFiles/binary_converter.dir/build: Binary_representation -.PHONY : CMakeFiles/binary_converter.dir/build - -CMakeFiles/binary_converter.dir/clean: - $(CMAKE_COMMAND) -P CMakeFiles/binary_converter.dir/cmake_clean.cmake -.PHONY : CMakeFiles/binary_converter.dir/clean - -CMakeFiles/binary_converter.dir/depend: - cd /home/Monreale/git/C/12.Internal-data-representation/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/Monreale/git/C/12.Internal-data-representation /home/Monreale/git/C/12.Internal-data-representation /home/Monreale/git/C/12.Internal-data-representation/build /home/Monreale/git/C/12.Internal-data-representation/build /home/Monreale/git/C/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : CMakeFiles/binary_converter.dir/depend - diff --git a/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/cmake_clean.cmake b/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/cmake_clean.cmake deleted file mode 100644 index 7b82419..0000000 --- a/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/cmake_clean.cmake +++ /dev/null @@ -1,13 +0,0 @@ -file(REMOVE_RECURSE - "Binary_representation" - "Binary_representation.pdb" - "CMakeFiles/binary_converter.dir/src/Task_1/binary.c.o" - "CMakeFiles/binary_converter.dir/src/Task_1/binary.c.o.d" - "CMakeFiles/binary_converter.dir/src/Task_1/main.c.o" - "CMakeFiles/binary_converter.dir/src/Task_1/main.c.o.d" -) - -# Per-language clean rules from dependency scanning. -foreach(lang C) - include(CMakeFiles/binary_converter.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/compiler_depend.make b/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/compiler_depend.make deleted file mode 100644 index 421cdfd..0000000 --- a/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for binary_converter. -# This may be replaced when dependencies are built. diff --git a/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/compiler_depend.ts b/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/compiler_depend.ts deleted file mode 100644 index 2704558..0000000 --- a/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for binary_converter. diff --git a/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/depend.make b/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/depend.make deleted file mode 100644 index 6c7a2ee..0000000 --- a/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for binary_converter. -# This may be replaced when dependencies are built. diff --git a/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/flags.make b/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/flags.make deleted file mode 100644 index e1bbe57..0000000 --- a/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/flags.make +++ /dev/null @@ -1,10 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.28 - -# compile C with /usr/bin/cc -C_DEFINES = - -C_INCLUDES = -I/home/Monreale/git/C/12.Internal-data-representation/src/Task_1 - -C_FLAGS = -std=gnu11 - diff --git a/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/link.txt b/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/link.txt deleted file mode 100644 index 818bb0a..0000000 --- a/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/link.txt +++ /dev/null @@ -1 +0,0 @@ -/usr/bin/cc CMakeFiles/binary_converter.dir/src/Task_1/main.c.o CMakeFiles/binary_converter.dir/src/Task_1/binary.c.o -o Binary_representation diff --git a/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/progress.make b/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/progress.make deleted file mode 100644 index 6a9dc74..0000000 --- a/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/progress.make +++ /dev/null @@ -1,4 +0,0 @@ -CMAKE_PROGRESS_1 = 1 -CMAKE_PROGRESS_2 = 2 -CMAKE_PROGRESS_3 = 3 - diff --git a/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/src/Task_1/binary.c.o b/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/src/Task_1/binary.c.o deleted file mode 100644 index e865a0511dd7d04bafd0de5dddae4ccc071a4ec9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4952 zcmd5@6`wsjO+u5{DMp00A`3JnrzVG!6x7sES)@bfkA{z;Lq(!;FXwaY#%EjS zJxCySY_AtQ+Ju}?A{og-u4JSj8P$|nHA&97a}eiNeC$P$@E?{iQHsvF`@DuEbQ!gaJ787w1}$(}HtDiv)8z(QI(-+=S8jNG zNOj>LIEB87PuaA@q7G}jdAy~ig=O#RJfHo0;KzJ6=x|y>Z$f;-R()53vF&T;_6ymHp%)!EeQ>=w*wL23$PlB~O4532$iOyRKjvj8Fe zLby^zNbkqkxlM>Op7SUTf|6}vcy7(XD81G2Gmw`nxHreGYaq&5DtPfTwm{4UjnCKu zX2bk~wE$YKBwuiCOd-_FG&&&3+2W&0JvS)SF(awuN*XMDvD0%oD}yFL#c$YR&W3H* z#>yl=q9Ex;Y{I7%DD}*;mi(~7*2F{Cnk$jm%@%WrtX@tiIoz5D z75gHN+{u=AXA8Tv8S}OlgmR#@ryN3OCVO|c=H$y~Nu(JyjaqcE=|KhtkeyzD0&Cd+BoLCNtYnz62`n}(>s+y;jJ=^&eH9WJ)dla(Ra5n zzQFhm+Y$<@fR}6wRaXl-p0iHF8ehhymm27J@58{k0E=5~I_^$w0hk#Lb2aa3jEAS# zFgsUgq2&}_Q4E@fY0fmxuOQ0q{f(W-)H0rB{eLD)(6;Oj$XiGs9n@J9adS4EdJCj z6Vz=4>Sk|Cxiu4u>eRV9DAxrIejZ#ldoGjYqaae=Va<$>z`Kl)8vZpn>}Jme_-5XxU);F{a-EMN6F7k{a;=#b zw?*$}_ZQJ7af@;~Vbcjt$BIwb;nCGChI21ob`0xMoziAG9X06~d<4-4+$D$USnuy` zI?DL`#$N{F{K!c=Q_eMKLh#9bdj1E_RKDN2>P+j-FPv%TYW{3~$eGj+)E_(q(mrR> zc`I)Uc)*#+59nYx>0AfFg!3lMK;KE{ZRc0}bXX&D85|CP2e0RAfTyKrh&6?w&^h`@ zLsT~&A}eK(_569TxC-NBejwkUKd(c$H^IRaM8h<$eFDCwFC01Y ztiCsVEZJcs^#g}OheGxHKbI8CgS`iz4%I&$lrU}xQZ+nyTj1}#7rq=O@M*~)20sG@ z)k&^>_a&m8tkoXdws}hm8sc%l@j-eX2fCy7`++0dANn3Bz!GJjM;z!y9F#n8L@4M0 zeG74*{TNKinORl!c$LsWAARs31+fX0PL-~qf)3CqJV@_h(n^j#7OLGug!KLa-BpwK z#3#!yty=dV1J(qqw3hHE%p)FsQ47GZriiPxr~zP)NnBivFcYFJpr{*QEgR^^rT$;Aen6s*I62nV5lNg1MM+oZcVY?B9_u)6v^KSM7*f)d zh;=1m-LVcMVzhO3kglW=ZH*+5cax^3ZX*&s(G+bx(bN)YYbVXIXj?qeexFeS9JVNr zk>=($;S0ix-)F!vt)nKY{QS6~0sAsE_@pa6{GsaeNg1OAo%)ga65c z<8CYcy=V-i;*PjW@>z)^dl(+2KkmVCs&HMl5Mo~c^&8;7!{mTa-t5;9^Z4H9aO7!eXW*4<4) ziB5MB?Tp8vTS%y*(};!OuGueoM6Qo_Btu<^&aPO(I0ZK7Dc0K5l8D4(GL!#~>0pj6 z@{rF>qg?+{)>(;VJE^5Ox3~w5tB5<9-R^Q-8ek9L6nhY9m&?eLz!8`2B~d~?iWkT_ zoNae2}yob=fUICK-L)v40UQ+oh{zVX~xmPcU z1zU&wx-Wqa-UI&p>!rQ!^Wo3`HISoEzx`LGedgcTV;8Qs|Aif{;Yn$a?y!|qe6|1U z#YU6bZ8#G0jC^5SVjRCc`t%oPG{Po)jvi0m=#s5t}hRaq*zx}@eqNr&@ diff --git a/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/src/Task_1/binary.c.o.d b/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/src/Task_1/binary.c.o.d deleted file mode 100644 index a11ee8a..0000000 --- a/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/src/Task_1/binary.c.o.d +++ /dev/null @@ -1,36 +0,0 @@ -CMakeFiles/binary_converter.dir/src/Task_1/binary.c.o: \ - /home/Monreale/git/C/12.Internal-data-representation/src/Task_1/binary.c \ - /usr/include/stdc-predef.h \ - /home/Monreale/git/C/12.Internal-data-representation/src/Task_1/binary.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/features.h /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h /usr/include/stdio.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ - /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h diff --git a/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/src/Task_1/main.c.o b/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/src/Task_1/main.c.o deleted file mode 100644 index cd51ab4b2f3d2926397627ec6e7e17725bf71e7e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5592 zcmd5B}}69qz60tAGfEv+ViXk#s03@Cz4G{Lmj-jyD-*XC|(!639f zPPl9<2DyX}1|{)NG#am^Erqs64TNIChuy>&6E&%cCM6{XV`2zV>U(cz_NLQYjPk`H zy`A~Z@4feXZ{GglaOJiwIUWxa!^56tnUz2pdu3r}UQW|;HlNL7zZWdKUFA#svdh~S)Ym-=$-czc1YR%Bg&&$J8_H7R84sbMue-869l#0qgn*bQ z;@|u=H8mC=hF>I4))+MRohlf3ZdUtKj~{wsIfBSwxr_Rc1Xd+@|qe3VBXi(htTSDo2+&g>eWUC)6U8*yCvP8qiQ*sUo&KNd$b z&-L#ijo1jeIJ7%9LjGHKO>VJm))EUW-y>lLEn^d&G?teasNl;>i8w|!=+{FUV_%Sa z?zy#R@^vW)Nx#P+=wn8Z1 z3w2Ogrg9l8IDQ_$juEu5*Pp^VV?%WA%5KC&{0H)m7QA4I_&7pIdjl(;J*<%=9-VY{ zMkWbWLK58?Wa=?DqtwGoCd(8SWqAD==n!Qi<9BkqP=RU_-#RIn=)aqOxlAHttzX8S z633w8I6i+S&6u+4I5ZQi_DGf$emX4)LIj+!HI?bpnUR=e46_E{ZPr1@jzJFn zAPe^qHJAfutCfLrP zgcs0Q+%_@rKa4F&9X~>M)mb=l>j?HJwk$YK-AzB;A5MpZ7`SDuw=w3-v{3c`E;Ca- zZKq9V9J|~mGyB(Wxqhg{aVT2m8RgsoX}gY@lXv=5HM-lqD@2%QoTth?_?fFQwzZ;S zqqe%Lwl%D`Y9*!KQg3n5ldZH|e`tM~x43K#hcSUX_$!1z{7l^XLKTBg$Wg@Lu}@`#o{!rLkM;F%8sz>psuE8H+Q9Td}v-&+jz@mDjF&Jho&27O5Yl(!ydOfQRh5eBO z)sbLJBp3~bb-x~J4hz&D2!v=I2-by~{EaHDx;m=+>-JUGHSDXd_lFwUa?pnZ`ipw& zPyCvP@fe|YAL8i>yiCGpOZX;^3qOKaA@OBD&nx_se7)0!zgxoPxOI}BIWQMGb%~F? zDDZX(zhA6_2lvg5^m#E@C!MPb&&asC0wqBWk>-|QL_YvF=qcDxT_5o` z1?{-^_^W|E-tyQp@+jvE@tzfX{P7@`YzfS;ROJq0PbTo;0Arlj5ziWJ#plAqxCvtw z{2|WU3n3bRa67RUS2g}R*g&8E)xHF5(dV?Yg!L^R|5e^60MQWo#d-rw(7spz{Q46A zj|u9NhtMys&%&md%e*(ay^P^p<>LDd-&3moc5bi1o;+0jdtnoOs`ejn`*PVB=Bhn* zVYc(Xy1+IR=Zxo%??+)T@NBWsa-7F+=LuswVI0*SeX3^<5Ub(+cMKQOQ0s>>v)PYx M{o=hZT&VVc144snlmGw# diff --git a/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/src/Task_1/main.c.o.d b/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/src/Task_1/main.c.o.d deleted file mode 100644 index be4c292..0000000 --- a/12.Internal-data-representation/build/CMakeFiles/binary_converter.dir/src/Task_1/main.c.o.d +++ /dev/null @@ -1,42 +0,0 @@ -CMakeFiles/binary_converter.dir/src/Task_1/main.c.o: \ - /home/Monreale/git/C/12.Internal-data-representation/src/Task_1/main.c \ - /usr/include/stdc-predef.h \ - /home/Monreale/git/C/12.Internal-data-representation/src/Task_1/binary.h \ - /usr/include/ctype.h /usr/include/features.h \ - /usr/include/features-time64.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/syslimits.h \ - /usr/include/limits.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \ - /usr/include/x86_64-linux-gnu/bits/pthread_stack_min.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h /usr/include/stdio.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stddef.h \ - /usr/lib/gcc/x86_64-linux-gnu/13/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ - /usr/include/x86_64-linux-gnu/bits/floatn.h \ - /usr/include/x86_64-linux-gnu/bits/floatn-common.h /usr/include/string.h \ - /usr/include/strings.h diff --git a/12.Internal-data-representation/build/CMakeFiles/cmake.check_cache b/12.Internal-data-representation/build/CMakeFiles/cmake.check_cache deleted file mode 100644 index 3dccd73..0000000 --- a/12.Internal-data-representation/build/CMakeFiles/cmake.check_cache +++ /dev/null @@ -1 +0,0 @@ -# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/12.Internal-data-representation/build/CMakeFiles/double_converter.dir/DependInfo.cmake b/12.Internal-data-representation/build/CMakeFiles/double_converter.dir/DependInfo.cmake deleted file mode 100644 index 728b2a4..0000000 --- a/12.Internal-data-representation/build/CMakeFiles/double_converter.dir/DependInfo.cmake +++ /dev/null @@ -1,23 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/home/Monreale/git/C/12.Internal-data-representation/src/Task_2/double.c" "CMakeFiles/double_converter.dir/src/Task_2/double.c.o" "gcc" "CMakeFiles/double_converter.dir/src/Task_2/double.c.o.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/12.Internal-data-representation/build/CMakeFiles/double_converter.dir/build.make b/12.Internal-data-representation/build/CMakeFiles/double_converter.dir/build.make deleted file mode 100644 index 62359ae..0000000 --- a/12.Internal-data-representation/build/CMakeFiles/double_converter.dir/build.make +++ /dev/null @@ -1,110 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.28 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /usr/bin/cmake - -# The command to remove a file. -RM = /usr/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /home/Monreale/git/C/12.Internal-data-representation - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /home/Monreale/git/C/12.Internal-data-representation/build - -# Include any dependencies generated for this target. -include CMakeFiles/double_converter.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include CMakeFiles/double_converter.dir/compiler_depend.make - -# Include the progress variables for this target. -include CMakeFiles/double_converter.dir/progress.make - -# Include the compile flags for this target's objects. -include CMakeFiles/double_converter.dir/flags.make - -CMakeFiles/double_converter.dir/src/Task_2/double.c.o: CMakeFiles/double_converter.dir/flags.make -CMakeFiles/double_converter.dir/src/Task_2/double.c.o: /home/Monreale/git/C/12.Internal-data-representation/src/Task_2/double.c -CMakeFiles/double_converter.dir/src/Task_2/double.c.o: CMakeFiles/double_converter.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/Monreale/git/C/12.Internal-data-representation/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object CMakeFiles/double_converter.dir/src/Task_2/double.c.o" - /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/double_converter.dir/src/Task_2/double.c.o -MF CMakeFiles/double_converter.dir/src/Task_2/double.c.o.d -o CMakeFiles/double_converter.dir/src/Task_2/double.c.o -c /home/Monreale/git/C/12.Internal-data-representation/src/Task_2/double.c - -CMakeFiles/double_converter.dir/src/Task_2/double.c.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/double_converter.dir/src/Task_2/double.c.i" - /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/Monreale/git/C/12.Internal-data-representation/src/Task_2/double.c > CMakeFiles/double_converter.dir/src/Task_2/double.c.i - -CMakeFiles/double_converter.dir/src/Task_2/double.c.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/double_converter.dir/src/Task_2/double.c.s" - /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/Monreale/git/C/12.Internal-data-representation/src/Task_2/double.c -o CMakeFiles/double_converter.dir/src/Task_2/double.c.s - -# Object files for target double_converter -double_converter_OBJECTS = \ -"CMakeFiles/double_converter.dir/src/Task_2/double.c.o" - -# External object files for target double_converter -double_converter_EXTERNAL_OBJECTS = - -Double_under_the_microscope: CMakeFiles/double_converter.dir/src/Task_2/double.c.o -Double_under_the_microscope: CMakeFiles/double_converter.dir/build.make -Double_under_the_microscope: CMakeFiles/double_converter.dir/link.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/home/Monreale/git/C/12.Internal-data-representation/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking C executable Double_under_the_microscope" - $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/double_converter.dir/link.txt --verbose=$(VERBOSE) - -# Rule to build all files generated by this target. -CMakeFiles/double_converter.dir/build: Double_under_the_microscope -.PHONY : CMakeFiles/double_converter.dir/build - -CMakeFiles/double_converter.dir/clean: - $(CMAKE_COMMAND) -P CMakeFiles/double_converter.dir/cmake_clean.cmake -.PHONY : CMakeFiles/double_converter.dir/clean - -CMakeFiles/double_converter.dir/depend: - cd /home/Monreale/git/C/12.Internal-data-representation/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/Monreale/git/C/12.Internal-data-representation /home/Monreale/git/C/12.Internal-data-representation /home/Monreale/git/C/12.Internal-data-representation/build /home/Monreale/git/C/12.Internal-data-representation/build /home/Monreale/git/C/12.Internal-data-representation/build/CMakeFiles/double_converter.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : CMakeFiles/double_converter.dir/depend - diff --git a/12.Internal-data-representation/build/CMakeFiles/double_converter.dir/cmake_clean.cmake b/12.Internal-data-representation/build/CMakeFiles/double_converter.dir/cmake_clean.cmake deleted file mode 100644 index bfaf262..0000000 --- a/12.Internal-data-representation/build/CMakeFiles/double_converter.dir/cmake_clean.cmake +++ /dev/null @@ -1,11 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/double_converter.dir/src/Task_2/double.c.o" - "CMakeFiles/double_converter.dir/src/Task_2/double.c.o.d" - "Double_under_the_microscope" - "Double_under_the_microscope.pdb" -) - -# Per-language clean rules from dependency scanning. -foreach(lang C) - include(CMakeFiles/double_converter.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/12.Internal-data-representation/build/CMakeFiles/double_converter.dir/compiler_depend.make b/12.Internal-data-representation/build/CMakeFiles/double_converter.dir/compiler_depend.make deleted file mode 100644 index ffd6ff3..0000000 --- a/12.Internal-data-representation/build/CMakeFiles/double_converter.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for double_converter. -# This may be replaced when dependencies are built. diff --git a/12.Internal-data-representation/build/CMakeFiles/double_converter.dir/compiler_depend.ts b/12.Internal-data-representation/build/CMakeFiles/double_converter.dir/compiler_depend.ts deleted file mode 100644 index 2c79204..0000000 --- a/12.Internal-data-representation/build/CMakeFiles/double_converter.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for double_converter. diff --git a/12.Internal-data-representation/build/CMakeFiles/double_converter.dir/depend.make b/12.Internal-data-representation/build/CMakeFiles/double_converter.dir/depend.make deleted file mode 100644 index db16c4f..0000000 --- a/12.Internal-data-representation/build/CMakeFiles/double_converter.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for double_converter. -# This may be replaced when dependencies are built. diff --git a/12.Internal-data-representation/build/CMakeFiles/double_converter.dir/flags.make b/12.Internal-data-representation/build/CMakeFiles/double_converter.dir/flags.make deleted file mode 100644 index 1f85199..0000000 --- a/12.Internal-data-representation/build/CMakeFiles/double_converter.dir/flags.make +++ /dev/null @@ -1,10 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.28 - -# compile C with /usr/bin/cc -C_DEFINES = - -C_INCLUDES = -I/home/Monreale/git/C/12.Internal-data-representation/src/Task_2 - -C_FLAGS = -std=gnu11 - diff --git a/12.Internal-data-representation/build/CMakeFiles/double_converter.dir/link.txt b/12.Internal-data-representation/build/CMakeFiles/double_converter.dir/link.txt deleted file mode 100644 index d06c284..0000000 --- a/12.Internal-data-representation/build/CMakeFiles/double_converter.dir/link.txt +++ /dev/null @@ -1 +0,0 @@ -/usr/bin/cc CMakeFiles/double_converter.dir/src/Task_2/double.c.o -o Double_under_the_microscope diff --git a/12.Internal-data-representation/build/CMakeFiles/double_converter.dir/progress.make b/12.Internal-data-representation/build/CMakeFiles/double_converter.dir/progress.make deleted file mode 100644 index 19ce96e..0000000 --- a/12.Internal-data-representation/build/CMakeFiles/double_converter.dir/progress.make +++ /dev/null @@ -1,3 +0,0 @@ -CMAKE_PROGRESS_1 = 4 -CMAKE_PROGRESS_2 = 5 - diff --git a/12.Internal-data-representation/build/CMakeFiles/double_converter.dir/src/Task_2/double.c.o b/12.Internal-data-representation/build/CMakeFiles/double_converter.dir/src/Task_2/double.c.o deleted file mode 100644 index 302f77cdbe000031d002bbb491147c4f442dd95a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2544 zcmbtV-HTgA6hAln*|qJiT1087DJ5FB?j@Tp>Q>a?GTTAQJ{0z~;cjx{#%?}L?uD+9 zN)1*np&&l_7x?0vwh&Nci{eJuhr6)iKIWwmNgotJRuSVlb7wZU;|&x&Fqw0H=Xd6u zIWu$fKD)deGYn8-!0Rxu6beuoALwbJrr|gogWsl4|GCP&`@HcWo#V~X#5r_wj~&c! z@!MlWvg+zY>z+-#7)fX}i{4A0@*11{V zBcJ;gZ`3>B&Nk{kI1{Zo%+(ufoyRFUS#Nq!f+$Rs`15PH^+tUU+;@ZZQjfY`5dJsj z+h*<9U;Tb>lJDA`MzL*h;RBeYqC5PuGHZ|#2I-;M8ngvw3-EB~8|aY$_BA(1VV z@>8&4t)QATle4L-$thIlO?10}W+FEQaA|4jV*K3dnp<+*`1}R)f|;Cq$rWbmMry%K zF1#RNfKlA|3=X=2msVCG2CzjKc38*>IUDa?0pt3Naq{TIlE5Hf$7gQE zmX3{&oQfeu;88#HW=7%Hew1${@b53m2V#y>0V??Qb1 za2&4xyT*TB+9UE~sMo(KaaB)B@^1~{w>AFDlKnX?=V%(Yq#%xXC>vgKmYE}^efc5D;h z)||Kx(tf+-nw4s~Vpp9_jG>k6^-R8M740DJ|NM<(JhdkDcO+I!i(mO>rB0J<;~{bq zHR@gZ5D64cAj+pQ;4#!mRWDxM&*vnrz9VP~u^(!#LjRrrMRd`c|22LdW2r7ZoyxzA zzOd-~r*}tKGE74KbGabZ7Zw$-<~Px)^f2!yy&&n-xmOUUcc;_$B@mZ!YEu1I_B*K1 zntJ?!1YS`@IqUIs3!~1zLmv+mbB(X>WsEBXl2@64Pt z9*@>d6}5k=xzg@;&*MAy-ZOV*@9f<9LacpvI22M+s?;YGNh5WRCd!6&4{-$$Rh!j( ze6La~)oqZgZJlF}IsmIvu7sy!4eP6b#9Ky{3V64pR)W$)LgLL-md$o7f{MpMyjf&o z*^j^Deh7-)Z7)J(l!*Q9;>XAVMbOKm+?;8!&FW0+bnNB4^f3yLMB<%e-Z|z8PI7yK zl26JBeKzwr{MZN^6+u6*hk1V7<!({VV$`4{B$stxH>=cbko=|n?1l`Zx)^ljeMu&G5Wo}CZ98@v&Duk5t;MZ1YY)2hjV;P( zJG9S8B=gCmse+lzAKJGwoy#T<#XHkU#6OzJWw{@Q<66;?j&KM^y&9hoW*60|grMmF z%Di5hO3kO)_Xz72+j6z)WVyH^g=tcy(k!2U;VU>~Vbuqjid>K6I&fy8qd&{n8_^$O zeNEJ{i(cd_bO2FkKG0l|GValP=Wp4gcjm9dnDpqS4YJ(y=xN?d8D>3Q?&X{#+lWU` z=aZCCkKX$Uu;RAOk@Lf(!&1_`l4+`?V|ot`Gd7Mjx8>>kUfj zUmP*RR!JXtz2-H0yw-y!p|NTHypHE)tlkc1+H@(+3IQE!6cvTn)Gz#Tn||SDl^(jNkKHmCBfxh#K#eu-j7#{GpZ-=dtKtKP^?}xtRMiKs zne+6a)@LD=uvRp_K837B#cx!3?2?vG@%bw*RQkV#BMf?U@%)2 zP|!=m(5dn$0_vw?SMq|DjF4QTKBtlDRKJ|MPt`%(S=tXZMhZ- zyNeU8m@)&$FRS7cPQ2zB;yv$;H~E3kZ=t2W%o z*U01<%j($p_2omc%MBK0Agsezz8F_AT4#%7GJQ-R!J>2S8c_8*yXyEu;cbqss6dScu`VBAP zJ&f2MCR)0g&>vWAPXlvS`E?lHz$r`9#6F+hGnjf7lpq5^27(L(83-~EWFW{ukbxir zK?Z^h&@-E`Dt)>1Qt9Q=`O@&%$Qj%0@Js`@xRU#90Pm;Yp03Ez$YIxP`_b20RO#7p59049{ersP3zqGz zo%>`>zuLB9%l#YI+K&f`{~3Hv!%v=>kvr*4e4c|o3Y0=^Q9r+i_Uh^Xi`as?XTv+^ z-&S>Z7+n�D}w!83-~EWFW{ukbxirK?Z^h1Q`f2@IT9d?8}pVc(TW?gIk;@E%Qwd z9#+|S(g2Ncd;yYG%Hw^eSdTxL`Cd>xn<=@K1a`RQDpDjXtg8D9=*UHuCX~GVW(Q!sz$^ zFj@9Yh>Nw&SKUqMw&Ki8@0xUO+{O5KGEEwHMXp0^}mlu`KneoEWektcez?U z&k2jL15MXT{&c*;*!4Q;8yE3NAL0F}5bd%N-=vrGh1IGJm5^GY>Y|QDjwkK14yikp z%zwwK)aOy5ICB1p{yE!!iMxMR^e>`PssA&L>zo~Dv0ArUB1~bWIIr0LOO<~cJPFUl?AlWPXe3o1~`^Fo`c`>W9$RVV*3Dil>90 zgMJY#BRmi7|D<4giT!0>3F{U1{~pgz`#&WZU$gb%HHGg&PyO`ADMKHba&v28Tqy5# zrK!q2&@T$(SHX9_sDoX3vq{TgCwjayWtj1!3W|bR?C#dO)YPtZ!^{|6v~Qg@(#Xi-Q%k-v`W-_5QR`#I1^(iBs&&Q7$$*h?_rn>X-OwvdcGnr$c zcq9X!<}}wtu88gO=#gRUKCpdX%!qaDGO%BM*QYzS?`zu$HC~J`Vme#(T?dr0r~Tm_ z+uMzYckezJJ7gT%zN0+`hJWLKRCe-z$WDEFkHGb%9sWi#5jW$?9u~q*f5E`@Y~eQv zT!l?Fi0bV62X*=@07jyaGkW6L1ic>6_AtB>sjN{fBok;di!Y@j{Q%634P=!a+0dSU#J~7gD+GG{Jx^pG?Pz zz_s4AsWiKr8mijS97L)Vl3hwOlYJ0r-oZO(A1*D~!!xZXfoLK*F`OyqFr<#A;+YhJ zIdtS+X_)I7OyQ}s>!a6b-Gx&bzbQ`fzxO8VE;ie~QYT!453O~CKhyhN>vVL_DHgBOA-tq(lS_=wa)_;PsPL=+PpWq4bX>BR8 ztS<%kb7TJgOCL_5LOB(_tak-R*iqW|kN>O8-@$&eeil69;Zx51{BJ`?Ig$A8?+gFV z$bAKevHL1@!ms1w;-B;J`Q+t2?k zEM9(p#Bmk;fy;C%GJiyU4Haxeb>G#J`%!r>)9){`;0P_58y%E( zB!cino(D4Nq2d}pX--|MLynay*c$PbM4~$q Date: Sun, 28 Dec 2025 20:08:42 +0000 Subject: [PATCH 4/5] Update Task_1 Task_2 --- 12.Internal-data-representation/src/Task_1/binary.c | 1 + 12.Internal-data-representation/src/Task_1/binary.h | 1 + 12.Internal-data-representation/src/Task_1/main.c | 1 + 12.Internal-data-representation/src/Task_2/double.c | 2 +- 4 files changed, 4 insertions(+), 1 deletion(-) diff --git a/12.Internal-data-representation/src/Task_1/binary.c b/12.Internal-data-representation/src/Task_1/binary.c index 0600df6..3a64345 100644 --- a/12.Internal-data-representation/src/Task_1/binary.c +++ b/12.Internal-data-representation/src/Task_1/binary.c @@ -261,3 +261,4 @@ int binary_addition(int binary_1, int binary_2) return result; } + diff --git a/12.Internal-data-representation/src/Task_1/binary.h b/12.Internal-data-representation/src/Task_1/binary.h index bf08fc3..5037d05 100644 --- a/12.Internal-data-representation/src/Task_1/binary.h +++ b/12.Internal-data-representation/src/Task_1/binary.h @@ -12,3 +12,4 @@ int decimal_representation(int binary); int binary_addition(int binary_1, int binary_2); #endif + diff --git a/12.Internal-data-representation/src/Task_1/main.c b/12.Internal-data-representation/src/Task_1/main.c index 84b1b4a..d177067 100644 --- a/12.Internal-data-representation/src/Task_1/main.c +++ b/12.Internal-data-representation/src/Task_1/main.c @@ -138,3 +138,4 @@ int main() return 0; } + diff --git a/12.Internal-data-representation/src/Task_2/double.c b/12.Internal-data-representation/src/Task_2/double.c index 8c3e15b..954c1ab 100644 --- a/12.Internal-data-representation/src/Task_2/double.c +++ b/12.Internal-data-representation/src/Task_2/double.c @@ -73,4 +73,4 @@ int main() printf("*2^%d\n", power); return 0; -} \ No newline at end of file +} From 36f86bddd0597539b14acc05c543fa826850a324 Mon Sep 17 00:00:00 2001 From: Stanislav Klimovich Date: Sun, 28 Dec 2025 20:11:03 +0000 Subject: [PATCH 5/5] Task_1 Task_2 to clang format --- 12.Internal-data-representation/src/Task_1/binary.c | 1 - 12.Internal-data-representation/src/Task_1/binary.h | 1 - 12.Internal-data-representation/src/Task_1/main.c | 1 - 3 files changed, 3 deletions(-) diff --git a/12.Internal-data-representation/src/Task_1/binary.c b/12.Internal-data-representation/src/Task_1/binary.c index 3a64345..0600df6 100644 --- a/12.Internal-data-representation/src/Task_1/binary.c +++ b/12.Internal-data-representation/src/Task_1/binary.c @@ -261,4 +261,3 @@ int binary_addition(int binary_1, int binary_2) return result; } - diff --git a/12.Internal-data-representation/src/Task_1/binary.h b/12.Internal-data-representation/src/Task_1/binary.h index 5037d05..bf08fc3 100644 --- a/12.Internal-data-representation/src/Task_1/binary.h +++ b/12.Internal-data-representation/src/Task_1/binary.h @@ -12,4 +12,3 @@ int decimal_representation(int binary); int binary_addition(int binary_1, int binary_2); #endif - diff --git a/12.Internal-data-representation/src/Task_1/main.c b/12.Internal-data-representation/src/Task_1/main.c index d177067..84b1b4a 100644 --- a/12.Internal-data-representation/src/Task_1/main.c +++ b/12.Internal-data-representation/src/Task_1/main.c @@ -138,4 +138,3 @@ int main() return 0; } -