From 12b313642e0d66cc88d00b0396d5c5615cedf048 Mon Sep 17 00:00:00 2001 From: Serge Lamikhov-Center <to_serge@users.sourceforge.net> Date: Tue, 11 Aug 2020 05:46:09 -0700 Subject: [PATCH] Remove Windows EOL --- .gitignore | 190 ++++++++++++++++++++++++++--------------------------- README.md | 24 +++---- 2 files changed, 107 insertions(+), 107 deletions(-) diff --git a/.gitignore b/.gitignore index 680a5b9..6e2e3f6 100644 --- a/.gitignore +++ b/.gitignore @@ -1,95 +1,95 @@ -autom4te.cache -Debug -Release -ELFIO.sdf -ELFIO.v11.suo -ELFIO.opensdf -ELFIO.v12.suo -.vs -tmp/ -docs - -tests/Debug -tests/Release -tests/ELFIOTest.vcxproj.user -tests/ELFIOTest -tests/ELFIOTest.exe -tests/runELFtests.trs - - -examples/ELFDump/Debug -examples/anonymizer/anonymizer -examples/anonymizer/anonymizer.exe -examples/elfdump/elfdump -examples/elfdump/elfdump.exe -examples/tutorial/tutorial -examples/tutorial/tutorial.exe -examples/write_obj/write_obj -examples/write_obj/write_obj.exe -examples/writer/writer -examples/writer/writer.exe - - -# generated elf files -tests/elf_examples/*_copy -tests/elf_examples/*_copy.elf -tests/elf_examples/elf_dummy_header_i386_32.elf -tests/elf_examples/elf_dummy_header_i386_64.elf -tests/elf_examples/elf_dummy_header_ppc_32.elf -tests/elf_examples/elf_dummy_header_ppc_64.elf -tests/elf_examples/write_exe_i386_32 -tests/elf_examples/write_exe_i386_32_w_addr -tests/elf_examples/write_exe_i386_32_wo_addr -tests/elf_examples/write_exe_i386_32_section_added -tests/elf_examples/ppc-32bit-testcopy*.elf -tests/elf_examples/null_section_inside_segment* -tests/elf_examples/segment_containing_no_section* -examples/writer/hello_x86_64 -examples/write_obj/hello - -# various unwanted files (backups, objects, cmake artifacts) -*~ -*.o -*.kate-swp -*.swp -.#* -\#*# -CMakeCache.txt -Makefile -CMakeFiles -/build*/ -*.res - -# autotools artifacts -.deps -config.status -ELFIOTest/runELFtests.trs - -# eclipse project files -.settings -.project -.cproject -.cdtproject -.cdtbuild - -# netbeans project files -/dist/ -Makefile -.dep.inc -nbproject - -# QtCreator project files -CMakeLists.txt.user - -# ignore all _ prefixed directories (usually used for generated directories) -_*/ - -# Latex build output -*.pdf -*.log -*.out -*.aux -*.bbl -*.toc -*.blg -/examples/elfdump/ELFDump.vcxproj.user +autom4te.cache +Debug +Release +ELFIO.sdf +ELFIO.v11.suo +ELFIO.opensdf +ELFIO.v12.suo +.vs +tmp/ +docs + +tests/Debug +tests/Release +tests/ELFIOTest.vcxproj.user +tests/ELFIOTest +tests/ELFIOTest.exe +tests/runELFtests.trs + + +examples/ELFDump/Debug +examples/anonymizer/anonymizer +examples/anonymizer/anonymizer.exe +examples/elfdump/elfdump +examples/elfdump/elfdump.exe +examples/tutorial/tutorial +examples/tutorial/tutorial.exe +examples/write_obj/write_obj +examples/write_obj/write_obj.exe +examples/writer/writer +examples/writer/writer.exe + + +# generated elf files +tests/elf_examples/*_copy +tests/elf_examples/*_copy.elf +tests/elf_examples/elf_dummy_header_i386_32.elf +tests/elf_examples/elf_dummy_header_i386_64.elf +tests/elf_examples/elf_dummy_header_ppc_32.elf +tests/elf_examples/elf_dummy_header_ppc_64.elf +tests/elf_examples/write_exe_i386_32 +tests/elf_examples/write_exe_i386_32_w_addr +tests/elf_examples/write_exe_i386_32_wo_addr +tests/elf_examples/write_exe_i386_32_section_added +tests/elf_examples/ppc-32bit-testcopy*.elf +tests/elf_examples/null_section_inside_segment* +tests/elf_examples/segment_containing_no_section* +examples/writer/hello_x86_64 +examples/write_obj/hello + +# various unwanted files (backups, objects, cmake artifacts) +*~ +*.o +*.kate-swp +*.swp +.#* +\#*# +CMakeCache.txt +Makefile +CMakeFiles +/build*/ +*.res + +# autotools artifacts +.deps +config.status +ELFIOTest/runELFtests.trs + +# eclipse project files +.settings +.project +.cproject +.cdtproject +.cdtbuild + +# netbeans project files +/dist/ +Makefile +.dep.inc +nbproject + +# QtCreator project files +CMakeLists.txt.user + +# ignore all _ prefixed directories (usually used for generated directories) +_*/ + +# Latex build output +*.pdf +*.log +*.out +*.aux +*.bbl +*.toc +*.blg +/examples/elfdump/ELFDump.vcxproj.user diff --git a/README.md b/README.md index f5b3763..f9c596d 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,12 @@ -# ELFIO - -[](https://travis-ci.com/serge1/ELFIO) -[](http://elfio.sourceforge.net/elfio.pdf) -[](https://github.com/serge1/ELFIO/blob/master/COPYING) - -ELFIO is a header-only C++ library intended for reading and generating -files in the ELF binary format. It is used as a standalone library - it is not -dependant on any other product or project. Adhering to ISO C++, it compiles on -a wide variety of architectures and compilers. - -The full library documentation can be found in *[ELFIO - Tutorial and User Manual](http://elfio.sourceforge.net/elfio.pdf)*. +# ELFIO + +[](https://travis-ci.com/serge1/ELFIO) +[](http://elfio.sourceforge.net/elfio.pdf) +[](https://github.com/serge1/ELFIO/blob/master/COPYING) + +ELFIO is a header-only C++ library intended for reading and generating +files in the ELF binary format. It is used as a standalone library - it is not +dependant on any other product or project. Adhering to ISO C++, it compiles on +a wide variety of architectures and compilers. + +The full library documentation can be found in *[ELFIO - Tutorial and User Manual](http://elfio.sourceforge.net/elfio.pdf)*. -- GitLab