Push the latest main.c

This commit is contained in:
2023-06-13 15:37:26 +02:00
parent bb4e7cf453
commit f3f8fcb7b7
32 changed files with 276 additions and 330 deletions

View File

@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.18) cmake_minimum_required(VERSION 3.7)
project(untitled C) project(untitled C)
set(CMAKE_C_STANDARD 11) set(CMAKE_C_STANDARD 11)

View File

@@ -4,6 +4,7 @@
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>
#include <stdlib.h> #include <stdlib.h>
#include <time.h>
#include "Movie.h" #include "Movie.h"
#include "Filmotheque.h" #include "Filmotheque.h"
@@ -73,7 +74,6 @@ void addMovie(struct Filmotheque* filmotheque, struct Movie* movie) {
filmotheque->directorMax = node->movie->head->movie->director; filmotheque->directorMax = node->movie->head->movie->director;
} }
} }
struct List* addMovieInTable(struct List* table[LENGTH],struct Movie* movie){ struct List* addMovieInTable(struct List* table[LENGTH],struct Movie* movie){
int realTime = atoi(movie->time); int realTime = atoi(movie->time);
if(table[realTime] == NULL){ if(table[realTime] == NULL){
@@ -87,7 +87,7 @@ struct List* addMovieInTable(struct List* table[LENGTH],struct Movie* movie){
return table[realTime]; return table[realTime];
} }
void createTable(char* nameFile,struct List* table,struct Filmotheque* filmo){ void initFilmo(char* nameFile,struct List* table,struct Filmotheque* filmo){
FILE *fichier; FILE *fichier;
fichier = fopen(nameFile, "r"); fichier = fopen(nameFile, "r");
@@ -134,14 +134,17 @@ struct List* searchByTime(struct List* table[LENGTH], char* time){
return table[realTime]; return table[realTime];
} }
struct List* searchByCategory(struct List* table[], char* category){ struct List* searchByCategory(struct List* table[LENGTH], char* category){
struct List* result = createEmptyList(); struct List* result = createEmptyList();
for(int i = 0;i<LENGTH;i++){ for(int i = 0;i<LENGTH;i++){
if(table[i] != NULL){ if(table[i]==NULL){
return NULL;
}
else{
struct Cell* inter = table[i]->head; struct Cell* inter = table[i]->head;
int length = table[i]->size; int length = table[i]->size;
for(int j=0;j<length;j++){ for(int j = 0;j<length;j++){
if(strcmp(inter->movie->category,category) == 0){ if(inter->movie->category == category){
addFirst(result,inter->movie); addFirst(result,inter->movie);
} }
} }
@@ -152,16 +155,15 @@ struct List* searchByCategory(struct List* table[], char* category){
struct List* searchByFilm(struct List* table[LENGTH], char* name){ struct List* searchByFilm(struct List* table[LENGTH], char* name){
struct List* result = createEmptyList(); struct List* result = createEmptyList();
for(int i=0; i<LENGTH; i++){ for(int i = 0;i<LENGTH;i++){
if(table[i] == NULL){ if(table[i]==NULL){
break; return NULL;
} }
else{ else{
struct Cell* inter = table[i]->head; struct Cell* inter = table[i]->head;
int length = table[i]->size; int length = table[i]->size;
for(int j=0; j<length; j++){ for(int j = 0;j<length;j++){
//Si le nom du film contient le nom recherché if(inter->movie->name == name){
if(strstr(inter->movie->name,name) != NULL){
addFirst(result,inter->movie); addFirst(result,inter->movie);
} }
} }
@@ -189,45 +191,85 @@ char* toLower(char* name){
return lower; return lower;
} }
struct List* searchRealMostMovie(struct Filmotheque* filmo){
char* directorMax = filmo->directorMax;
struct List* result = searchByDirector(filmo,directorMax);
return result;
}
/*void readRequest(char* request){
int readRequest(char* request, struct List* tableau[LENGTH], struct Filmotheque* filmo) {
deleteResult();
FILE *fichier; FILE *fichier;
fichier = fopen(request, "r"); fichier = fopen(request, "r");
if (fichier == NULL) { if (fichier == NULL) {
printf("Erreur lors de l'ouverture du fichier"); printf("Erreur lors de l'ouverture du fichier2");
exit(1); exit(1);
} }
char* fonction = malloc(sizeof(char) * 50); char line[NUMBER_OF_CHAR];
char* var = malloc(sizeof(char) * 50);
while(fgets(line,sizeof(line),fichier) != NULL){ char *fonction;
fonction = strtok(line, ";"); char *argument;
var = strtok(NULL, ";");
while (fgets(line, sizeof(line), fichier) != NULL) {
fonction = strtok(line, ";");
argument = strtok(NULL, ";");
} }
if(fonction == 'searchByDirector'){ if (strcmp(fonction, "searchByDirector") == 0) {
return searchByDirector(var); clock_t start;
start = clock();
struct List* result = searchByDirector(filmo, argument);
start = clock() - start;
double time_taken = ((double) start) / CLOCKS_PER_SEC;
printResultInFile(result, time_taken);
deleteRequest();
return 0;
} }
if(fonction == 'searchByDuree'){ else if (strcmp(fonction, "searchByTime") == 0) {
return searchByDuree(var); clock_t start;
start = clock();
struct List* result = searchByTime(tableau, argument);
start = clock() - start;
double time_taken = ((double) start) / CLOCKS_PER_SEC;
printResultInFile(result, time_taken);
deleteRequest();
return 0;
} }
else if (strcmp(fonction, "searchByCategory") == 0){
clock_t start;
start = clock();
struct List* result = searchByCategory(tableau, argument);
start = clock() - start;
double time_taken = ((double) start) / CLOCKS_PER_SEC;
printResultInFile(result, time_taken);
deleteRequest();
return 0;
}
else if (strcmp(fonction,"searchRealMostMovie") == 0) {
clock_t start;
start = clock();
struct List *result = searchRealMostMovie(filmo);
start = clock() - start;
double time_taken = ((double) start) / CLOCKS_PER_SEC;
printResultInFile(result, time_taken);
deleteRequest();
return 0;
}
else if (strcmp(fonction,"stopServer") == 0) {
deleteRequest();
return 8;
}
}
/*
if(fonction == 'searchByCategorie'){ if(fonction == 'searchByCategorie'){
return searchByCategorie(var); return searchByCategorie(var);
} }
if(fonction == 'searchByFilm'){ if(fonction == 'searchByFilm'){
return searchByFilm(var); return searchByFilm(var);
} }
if(fonction == 'searchRealMostMovie'){
return searchRealMostMovie(var);
}
if(fonction == 'searchAll'){
return searchAll(var);
}
if(fonction == 'stopServer'){
return stopServer(var);
}
} }
*/ */
//verifier si le fichier est la faire une boucle et a l'aide d'un fopen() quand on y a acces le fichier est alors present //verifier si le fichier est la faire une boucle et a l'aide d'un fopen() quand on y a acces le fichier est alors present
@@ -247,7 +289,7 @@ void deleteFilmotheque(struct Filmotheque* filmotheque, struct List* table[LENGT
void printResultInFile(struct List* result, double time){ void printResultInFile(struct List* result, double time){
FILE *fichier; FILE *fichier;
fichier = fopen("result.txt", "w"); fichier = fopen("results.txt", "w");
if (fichier == NULL) { if (fichier == NULL) {
printf("Erreur lors de l'ouverture du fichier"); printf("Erreur lors de l'ouverture du fichier");
@@ -267,6 +309,19 @@ void printResultInFile(struct List* result, double time){
//ecrit ready.txt pour dire que le fichier est pret a etre lu //ecrit ready.txt pour dire que le fichier est pret a etre lu
FILE *fichier2; FILE *fichier2;
fichier2 = fopen("ready.txt", "w"); fichier2 = fopen("ready.txt", "w");
fprintf(fichier2,"ready");
fclose(fichier2); fclose(fichier2);
}
void deleteRequest(){
char* ready_request = "ready_requests.txt";
char* request = "requests.txt";
remove(ready_request);
remove(request);
}
void deleteResult(){
char* ready_results = "ready.txt";
char* results = "results.txt";
remove(ready_results);
remove(results);
} }

View File

@@ -12,26 +12,33 @@ struct Filmotheque{
struct NodeTrie* director; struct NodeTrie* director;
}; };
char* toLower(char* name);
struct Filmotheque* createEmptyFilmo(); struct Filmotheque* createEmptyFilmo();
void createTable(char* nameFile,struct List* table,struct Filmotheque* filmo); void initFilmo(char* nameFile,struct List* table,struct Filmotheque* filmo);
struct List* addMovieInTable(struct List* table[LENGTH],struct Movie* movie);
void addMovie(struct Filmotheque* filmotheque, struct Movie* movie); void addMovie(struct Filmotheque* filmotheque, struct Movie* movie);
char* toLower(char* name);
struct List* searchByDirector(struct Filmotheque* filmotheque, char* director); struct List* searchByDirector(struct Filmotheque* filmotheque, char* director);
struct List* searchByTime(struct List* tableau[LENGTH], char* time); struct List* searchByTime(struct List* tableau[LENGTH], char* time);
struct List* searchByCategory(struct List* table[], char* category); struct List* searchByCategory(struct List* table[LENGTH], char* category);
struct List* searchByFilm(struct List* table[LENGTH], char* name); struct List* searchByFilm(struct List* table[LENGTH], char* name);
struct List* addMovieInTable(struct List* table[LENGTH],struct Movie* movie);
void deleteFilmotheque(struct Filmotheque* filmotheque, struct List* table[LENGTH]); void deleteFilmotheque(struct Filmotheque* filmotheque, struct List* table[LENGTH]);
int readRequest(char* request, struct List* tableau[LENGTH],struct Filmotheque* filmo);
void printResultInFile(struct List* result, double time); void printResultInFile(struct List* result, double time);
void deleteRequest();
void deleteResult();
#endif //PROJETCGROUPE8_MAIN_FILMOTHEQUE_H #endif //PROJETCGROUPE8_MAIN_FILMOTHEQUE_H

View File

@@ -55,7 +55,7 @@
} }
], ],
"type" : "INTERNAL", "type" : "INTERNAL",
"value" : "/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug" "value" : "/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug"
}, },
{ {
"name" : "CMAKE_CACHE_MAJOR_VERSION", "name" : "CMAKE_CACHE_MAJOR_VERSION",
@@ -527,7 +527,7 @@
} }
], ],
"type" : "INTERNAL", "type" : "INTERNAL",
"value" : "/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd" "value" : "/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd"
}, },
{ {
"name" : "CMAKE_INSTALL_PREFIX", "name" : "CMAKE_INSTALL_PREFIX",
@@ -1095,7 +1095,7 @@
} }
], ],
"type" : "STATIC", "type" : "STATIC",
"value" : "/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug" "value" : "/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug"
}, },
{ {
"name" : "untitled_SOURCE_DIR", "name" : "untitled_SOURCE_DIR",
@@ -1107,7 +1107,7 @@
} }
], ],
"type" : "STATIC", "type" : "STATIC",
"value" : "/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd" "value" : "/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd"
} }
], ],
"kind" : "cache", "kind" : "cache",

View File

@@ -395,8 +395,8 @@
"kind" : "cmakeFiles", "kind" : "cmakeFiles",
"paths" : "paths" :
{ {
"build" : "/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug", "build" : "/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug",
"source" : "/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd" "source" : "/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd"
}, },
"version" : "version" :
{ {

View File

@@ -8,7 +8,7 @@
"build" : ".", "build" : ".",
"minimumCMakeVersion" : "minimumCMakeVersion" :
{ {
"string" : "3.18" "string" : "3.7"
}, },
"projectIndex" : 0, "projectIndex" : 0,
"source" : ".", "source" : ".",
@@ -48,8 +48,8 @@
"kind" : "codemodel", "kind" : "codemodel",
"paths" : "paths" :
{ {
"build" : "/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug", "build" : "/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug",
"source" : "/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd" "source" : "/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd"
}, },
"version" : "version" :
{ {

View File

@@ -26,7 +26,7 @@
"objects" : "objects" :
[ [
{ {
"jsonFile" : "codemodel-v2-782a936e32ca6e496d09.json", "jsonFile" : "codemodel-v2-5432de7fd8dbee1dbc14.json",
"kind" : "codemodel", "kind" : "codemodel",
"version" : "version" :
{ {
@@ -35,7 +35,7 @@
} }
}, },
{ {
"jsonFile" : "cache-v2-1e97cea664548993aac1.json", "jsonFile" : "cache-v2-d77da2abc14a88788d2b.json",
"kind" : "cache", "kind" : "cache",
"version" : "version" :
{ {
@@ -44,7 +44,7 @@
} }
}, },
{ {
"jsonFile" : "cmakeFiles-v1-c31f37083d6b51542458.json", "jsonFile" : "cmakeFiles-v1-79095dfb38875bec3325.json",
"kind" : "cmakeFiles", "kind" : "cmakeFiles",
"version" : "version" :
{ {
@@ -57,7 +57,7 @@
{ {
"cache-v2" : "cache-v2" :
{ {
"jsonFile" : "cache-v2-1e97cea664548993aac1.json", "jsonFile" : "cache-v2-d77da2abc14a88788d2b.json",
"kind" : "cache", "kind" : "cache",
"version" : "version" :
{ {
@@ -67,7 +67,7 @@
}, },
"cmakeFiles-v1" : "cmakeFiles-v1" :
{ {
"jsonFile" : "cmakeFiles-v1-c31f37083d6b51542458.json", "jsonFile" : "cmakeFiles-v1-79095dfb38875bec3325.json",
"kind" : "cmakeFiles", "kind" : "cmakeFiles",
"version" : "version" :
{ {
@@ -77,7 +77,7 @@
}, },
"codemodel-v2" : "codemodel-v2" :
{ {
"jsonFile" : "codemodel-v2-782a936e32ca6e496d09.json", "jsonFile" : "codemodel-v2-5432de7fd8dbee1dbc14.json",
"kind" : "codemodel", "kind" : "codemodel",
"version" : "version" :
{ {

View File

@@ -1,5 +1,5 @@
# This is the CMakeCache file. # This is the CMakeCache file.
# For build in directory: /mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug # For build in directory: /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug
# It was generated by CMake: /usr/bin/cmake # It was generated by CMake: /usr/bin/cmake
# You can edit this file to change values found and used by 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 not want to change any of the values, simply exit the editor.
@@ -201,10 +201,10 @@ ProcessorCount_cmd_nproc:FILEPATH=/usr/bin/nproc
ProcessorCount_cmd_sysctl:FILEPATH=/usr/sbin/sysctl ProcessorCount_cmd_sysctl:FILEPATH=/usr/sbin/sysctl
//Value Computed by CMake //Value Computed by CMake
untitled_BINARY_DIR:STATIC=/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug untitled_BINARY_DIR:STATIC=/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug
//Value Computed by CMake //Value Computed by CMake
untitled_SOURCE_DIR:STATIC=/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd untitled_SOURCE_DIR:STATIC=/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd
######################## ########################
@@ -216,7 +216,7 @@ CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_AR //ADVANCED property for variable: CMAKE_AR
CMAKE_AR-ADVANCED:INTERNAL=1 CMAKE_AR-ADVANCED:INTERNAL=1
//This is the directory where this CMakeCache.txt was created //This is the directory where this CMakeCache.txt was created
CMAKE_CACHEFILE_DIR:INTERNAL=/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug CMAKE_CACHEFILE_DIR:INTERNAL=/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug
//Major version of cmake used to create the current loaded cache //Major version of cmake used to create the current loaded cache
CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3
//Minor version of cmake used to create the current loaded cache //Minor version of cmake used to create the current loaded cache
@@ -279,7 +279,7 @@ CMAKE_GENERATOR_PLATFORM:INTERNAL=
CMAKE_GENERATOR_TOOLSET:INTERNAL= CMAKE_GENERATOR_TOOLSET:INTERNAL=
//Source directory with the top level CMakeLists.txt file for this //Source directory with the top level CMakeLists.txt file for this
// project // project
CMAKE_HOME_DIRECTORY:INTERNAL=/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd CMAKE_HOME_DIRECTORY:INTERNAL=/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd
//Install .so files without execute permission. //Install .so files without execute permission.
CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1 CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1
//ADVANCED property for variable: CMAKE_LINKER //ADVANCED property for variable: CMAKE_LINKER

View File

@@ -2,8 +2,8 @@
# Generated by "Unix Makefiles" Generator, CMake Version 3.18 # Generated by "Unix Makefiles" Generator, CMake Version 3.18
# Relative path conversion top directories. # Relative path conversion top directories.
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd") set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd")
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug") set(CMAKE_RELATIVE_PATH_TOP_BINARY "/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug")
# Force unix paths in dependencies. # Force unix paths in dependencies.
set(CMAKE_FORCE_UNIX_PATHS 1) set(CMAKE_FORCE_UNIX_PATHS 1)

View File

@@ -10,15 +10,17 @@ The output was:
Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out" Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out"
The C compiler identification is GNU, found in "/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles/3.18.4/CompilerIdC/a.out" The C compiler identification is GNU, found in "/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles/3.18.4/CompilerIdC/a.out"
Detecting C compiler ABI info compiled with the following output: Detecting C compiler ABI info compiled with the following output:
Change Dir: /mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles/CMakeTmp Change Dir: /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/gmake cmTC_f1f28/fast && /usr/bin/gmake -f CMakeFiles/cmTC_f1f28.dir/build.make CMakeFiles/cmTC_f1f28.dir/build Run Build Command(s):/usr/bin/gmake cmTC_35bd2/fast && gmake: Warning: File 'Makefile' has modification time 4458 s in the future
gmake[1]: Entering directory '/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles/CMakeTmp' /usr/bin/gmake -f CMakeFiles/cmTC_35bd2.dir/build.make CMakeFiles/cmTC_35bd2.dir/build
Building C object CMakeFiles/cmTC_f1f28.dir/CMakeCCompilerABI.c.o gmake[1]: Entering directory '/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles/CMakeTmp'
/usr/bin/cc -v -o CMakeFiles/cmTC_f1f28.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.18/Modules/CMakeCCompilerABI.c gmake[1]: Warning: File 'CMakeFiles/cmTC_35bd2.dir/flags.make' has modification time 4458 s in the future
Building C object CMakeFiles/cmTC_35bd2.dir/CMakeCCompilerABI.c.o
/usr/bin/cc -v -o CMakeFiles/cmTC_35bd2.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.18/Modules/CMakeCCompilerABI.c
Using built-in specs. Using built-in specs.
COLLECT_GCC=/usr/bin/cc COLLECT_GCC=/usr/bin/cc
OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa:hsa OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa:hsa
@@ -28,8 +30,8 @@ Configured with: ../src/configure -v --with-pkgversion='Debian 10.2.1-6' --with-
Thread model: posix Thread model: posix
Supported LTO compression algorithms: zlib zstd Supported LTO compression algorithms: zlib zstd
gcc version 10.2.1 20210110 (Debian 10.2.1-6) gcc version 10.2.1 20210110 (Debian 10.2.1-6)
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_f1f28.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_35bd2.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'
/usr/lib/gcc/x86_64-linux-gnu/10/cc1 -quiet -v -imultiarch x86_64-linux-gnu /usr/share/cmake-3.18/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_f1f28.dir/CMakeCCompilerABI.c.o -version -fasynchronous-unwind-tables -o /tmp/cc8peVKs.s /usr/lib/gcc/x86_64-linux-gnu/10/cc1 -quiet -v -imultiarch x86_64-linux-gnu /usr/share/cmake-3.18/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_35bd2.dir/CMakeCCompilerABI.c.o -version -fasynchronous-unwind-tables -o /tmp/ccyZ5s30.s
GNU C17 (Debian 10.2.1-6) version 10.2.1 20210110 (x86_64-linux-gnu) GNU C17 (Debian 10.2.1-6) version 10.2.1 20210110 (x86_64-linux-gnu)
compiled by GNU C version 10.2.1 20210110, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.0, isl version isl-0.23-GMP compiled by GNU C version 10.2.1 20210110, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.0, isl version isl-0.23-GMP
@@ -49,15 +51,15 @@ GNU C17 (Debian 10.2.1-6) version 10.2.1 20210110 (x86_64-linux-gnu)
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
Compiler executable checksum: 1f803793fa2e3418c492b25e7d3eac2f Compiler executable checksum: 1f803793fa2e3418c492b25e7d3eac2f
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_f1f28.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_35bd2.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'
as -v --64 -o CMakeFiles/cmTC_f1f28.dir/CMakeCCompilerABI.c.o /tmp/cc8peVKs.s as -v --64 -o CMakeFiles/cmTC_35bd2.dir/CMakeCCompilerABI.c.o /tmp/ccyZ5s30.s
GNU assembler version 2.35.2 (x86_64-linux-gnu) using BFD version (GNU Binutils for Debian) 2.35.2 GNU assembler version 2.35.2 (x86_64-linux-gnu) using BFD version (GNU Binutils for Debian) 2.35.2
COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/10/:/usr/lib/gcc/x86_64-linux-gnu/10/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/10/:/usr/lib/gcc/x86_64-linux-gnu/ COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/10/:/usr/lib/gcc/x86_64-linux-gnu/10/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/10/:/usr/lib/gcc/x86_64-linux-gnu/
LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/10/:/usr/lib/gcc/x86_64-linux-gnu/10/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/10/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/10/../../../:/lib/:/usr/lib/ LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/10/:/usr/lib/gcc/x86_64-linux-gnu/10/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/10/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/10/../../../:/lib/:/usr/lib/
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_f1f28.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_35bd2.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'
Linking C executable cmTC_f1f28 Linking C executable cmTC_35bd2
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f1f28.dir/link.txt --verbose=1 /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_35bd2.dir/link.txt --verbose=1
/usr/bin/cc -v CMakeFiles/cmTC_f1f28.dir/CMakeCCompilerABI.c.o -o cmTC_f1f28 /usr/bin/cc -v CMakeFiles/cmTC_35bd2.dir/CMakeCCompilerABI.c.o -o cmTC_35bd2
Using built-in specs. Using built-in specs.
COLLECT_GCC=/usr/bin/cc COLLECT_GCC=/usr/bin/cc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/10/lto-wrapper COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/10/lto-wrapper
@@ -70,10 +72,12 @@ Supported LTO compression algorithms: zlib zstd
gcc version 10.2.1 20210110 (Debian 10.2.1-6) gcc version 10.2.1 20210110 (Debian 10.2.1-6)
COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/10/:/usr/lib/gcc/x86_64-linux-gnu/10/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/10/:/usr/lib/gcc/x86_64-linux-gnu/ COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/10/:/usr/lib/gcc/x86_64-linux-gnu/10/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/10/:/usr/lib/gcc/x86_64-linux-gnu/
LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/10/:/usr/lib/gcc/x86_64-linux-gnu/10/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/10/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/10/../../../:/lib/:/usr/lib/ LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/10/:/usr/lib/gcc/x86_64-linux-gnu/10/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/10/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/10/../../../:/lib/:/usr/lib/
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_f1f28' '-mtune=generic' '-march=x86-64' COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_35bd2' '-mtune=generic' '-march=x86-64'
/usr/lib/gcc/x86_64-linux-gnu/10/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/10/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/10/lto-wrapper -plugin-opt=-fresolution=/tmp/ccR3HjoV.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 -o cmTC_f1f28 /usr/lib/gcc/x86_64-linux-gnu/10/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/10/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/10/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/10 -L/usr/lib/gcc/x86_64-linux-gnu/10/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/10/../../../../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/10/../../.. CMakeFiles/cmTC_f1f28.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/10/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/10/../../../x86_64-linux-gnu/crtn.o /usr/lib/gcc/x86_64-linux-gnu/10/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/10/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/10/lto-wrapper -plugin-opt=-fresolution=/tmp/ccZAriqs.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 -o cmTC_35bd2 /usr/lib/gcc/x86_64-linux-gnu/10/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/10/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/10/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/10 -L/usr/lib/gcc/x86_64-linux-gnu/10/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/10/../../../../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/10/../../.. CMakeFiles/cmTC_35bd2.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/10/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/10/../../../x86_64-linux-gnu/crtn.o
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_f1f28' '-mtune=generic' '-march=x86-64' COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_35bd2' '-mtune=generic' '-march=x86-64'
gmake[1]: Leaving directory '/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles/CMakeTmp' gmake[1]: warning: Clock skew detected. Your build may be incomplete.
gmake[1]: Leaving directory '/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles/CMakeTmp'
gmake: warning: Clock skew detected. Your build may be incomplete.
@@ -94,12 +98,14 @@ Parsed C implicit include dir info from above output: rv=done
Parsed C implicit link information from above output: Parsed C implicit link information from above output:
link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
ignore line: [Change Dir: /mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles/CMakeTmp] ignore line: [Change Dir: /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles/CMakeTmp]
ignore line: [] ignore line: []
ignore line: [Run Build Command(s):/usr/bin/gmake cmTC_f1f28/fast && /usr/bin/gmake -f CMakeFiles/cmTC_f1f28.dir/build.make CMakeFiles/cmTC_f1f28.dir/build] ignore line: [Run Build Command(s):/usr/bin/gmake cmTC_35bd2/fast && gmake: Warning: File 'Makefile' has modification time 4458 s in the future]
ignore line: [gmake[1]: Entering directory '/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles/CMakeTmp'] ignore line: [/usr/bin/gmake -f CMakeFiles/cmTC_35bd2.dir/build.make CMakeFiles/cmTC_35bd2.dir/build]
ignore line: [Building C object CMakeFiles/cmTC_f1f28.dir/CMakeCCompilerABI.c.o] ignore line: [gmake[1]: Entering directory '/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles/CMakeTmp']
ignore line: [/usr/bin/cc -v -o CMakeFiles/cmTC_f1f28.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.18/Modules/CMakeCCompilerABI.c] ignore line: [gmake[1]: Warning: File 'CMakeFiles/cmTC_35bd2.dir/flags.make' has modification time 4458 s in the future]
ignore line: [Building C object CMakeFiles/cmTC_35bd2.dir/CMakeCCompilerABI.c.o]
ignore line: [/usr/bin/cc -v -o CMakeFiles/cmTC_35bd2.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.18/Modules/CMakeCCompilerABI.c]
ignore line: [Using built-in specs.] ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=/usr/bin/cc] ignore line: [COLLECT_GCC=/usr/bin/cc]
ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa:hsa] ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa:hsa]
@@ -109,8 +115,8 @@ Parsed C implicit link information from above output:
ignore line: [Thread model: posix] ignore line: [Thread model: posix]
ignore line: [Supported LTO compression algorithms: zlib zstd] ignore line: [Supported LTO compression algorithms: zlib zstd]
ignore line: [gcc version 10.2.1 20210110 (Debian 10.2.1-6) ] ignore line: [gcc version 10.2.1 20210110 (Debian 10.2.1-6) ]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_f1f28.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'] ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_35bd2.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64']
ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/10/cc1 -quiet -v -imultiarch x86_64-linux-gnu /usr/share/cmake-3.18/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_f1f28.dir/CMakeCCompilerABI.c.o -version -fasynchronous-unwind-tables -o /tmp/cc8peVKs.s] ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/10/cc1 -quiet -v -imultiarch x86_64-linux-gnu /usr/share/cmake-3.18/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_35bd2.dir/CMakeCCompilerABI.c.o -version -fasynchronous-unwind-tables -o /tmp/ccyZ5s30.s]
ignore line: [GNU C17 (Debian 10.2.1-6) version 10.2.1 20210110 (x86_64-linux-gnu)] ignore line: [GNU C17 (Debian 10.2.1-6) version 10.2.1 20210110 (x86_64-linux-gnu)]
ignore line: [ compiled by GNU C version 10.2.1 20210110 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.0 isl version isl-0.23-GMP] ignore line: [ compiled by GNU C version 10.2.1 20210110 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.0 isl version isl-0.23-GMP]
ignore line: [] ignore line: []
@@ -130,15 +136,15 @@ Parsed C implicit link information from above output:
ignore line: [] ignore line: []
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
ignore line: [Compiler executable checksum: 1f803793fa2e3418c492b25e7d3eac2f] ignore line: [Compiler executable checksum: 1f803793fa2e3418c492b25e7d3eac2f]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_f1f28.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'] ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_35bd2.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64']
ignore line: [ as -v --64 -o CMakeFiles/cmTC_f1f28.dir/CMakeCCompilerABI.c.o /tmp/cc8peVKs.s] ignore line: [ as -v --64 -o CMakeFiles/cmTC_35bd2.dir/CMakeCCompilerABI.c.o /tmp/ccyZ5s30.s]
ignore line: [GNU assembler version 2.35.2 (x86_64-linux-gnu) using BFD version (GNU Binutils for Debian) 2.35.2] ignore line: [GNU assembler version 2.35.2 (x86_64-linux-gnu) using BFD version (GNU Binutils for Debian) 2.35.2]
ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/10/:/usr/lib/gcc/x86_64-linux-gnu/10/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/10/:/usr/lib/gcc/x86_64-linux-gnu/] ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/10/:/usr/lib/gcc/x86_64-linux-gnu/10/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/10/:/usr/lib/gcc/x86_64-linux-gnu/]
ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/10/:/usr/lib/gcc/x86_64-linux-gnu/10/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/10/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/10/../../../:/lib/:/usr/lib/] ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/10/:/usr/lib/gcc/x86_64-linux-gnu/10/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/10/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/10/../../../:/lib/:/usr/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_f1f28.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'] ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_35bd2.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64']
ignore line: [Linking C executable cmTC_f1f28] ignore line: [Linking C executable cmTC_35bd2]
ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f1f28.dir/link.txt --verbose=1] ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_35bd2.dir/link.txt --verbose=1]
ignore line: [/usr/bin/cc -v CMakeFiles/cmTC_f1f28.dir/CMakeCCompilerABI.c.o -o cmTC_f1f28 ] ignore line: [/usr/bin/cc -v CMakeFiles/cmTC_35bd2.dir/CMakeCCompilerABI.c.o -o cmTC_35bd2 ]
ignore line: [Using built-in specs.] ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=/usr/bin/cc] ignore line: [COLLECT_GCC=/usr/bin/cc]
ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/10/lto-wrapper] ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/10/lto-wrapper]
@@ -151,13 +157,13 @@ Parsed C implicit link information from above output:
ignore line: [gcc version 10.2.1 20210110 (Debian 10.2.1-6) ] ignore line: [gcc version 10.2.1 20210110 (Debian 10.2.1-6) ]
ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/10/:/usr/lib/gcc/x86_64-linux-gnu/10/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/10/:/usr/lib/gcc/x86_64-linux-gnu/] ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/10/:/usr/lib/gcc/x86_64-linux-gnu/10/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/10/:/usr/lib/gcc/x86_64-linux-gnu/]
ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/10/:/usr/lib/gcc/x86_64-linux-gnu/10/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/10/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/10/../../../:/lib/:/usr/lib/] ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/10/:/usr/lib/gcc/x86_64-linux-gnu/10/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/10/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/10/../../../:/lib/:/usr/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_f1f28' '-mtune=generic' '-march=x86-64'] ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_35bd2' '-mtune=generic' '-march=x86-64']
link line: [ /usr/lib/gcc/x86_64-linux-gnu/10/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/10/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/10/lto-wrapper -plugin-opt=-fresolution=/tmp/ccR3HjoV.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 -o cmTC_f1f28 /usr/lib/gcc/x86_64-linux-gnu/10/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/10/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/10/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/10 -L/usr/lib/gcc/x86_64-linux-gnu/10/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/10/../../../../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/10/../../.. CMakeFiles/cmTC_f1f28.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/10/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/10/../../../x86_64-linux-gnu/crtn.o] link line: [ /usr/lib/gcc/x86_64-linux-gnu/10/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/10/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/10/lto-wrapper -plugin-opt=-fresolution=/tmp/ccZAriqs.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 -o cmTC_35bd2 /usr/lib/gcc/x86_64-linux-gnu/10/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/10/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/10/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/10 -L/usr/lib/gcc/x86_64-linux-gnu/10/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/10/../../../../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/10/../../.. CMakeFiles/cmTC_35bd2.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/10/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/10/../../../x86_64-linux-gnu/crtn.o]
arg [/usr/lib/gcc/x86_64-linux-gnu/10/collect2] ==> ignore arg [/usr/lib/gcc/x86_64-linux-gnu/10/collect2] ==> ignore
arg [-plugin] ==> ignore arg [-plugin] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/10/liblto_plugin.so] ==> ignore arg [/usr/lib/gcc/x86_64-linux-gnu/10/liblto_plugin.so] ==> ignore
arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/10/lto-wrapper] ==> ignore arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/10/lto-wrapper] ==> ignore
arg [-plugin-opt=-fresolution=/tmp/ccR3HjoV.res] ==> ignore arg [-plugin-opt=-fresolution=/tmp/ccZAriqs.res] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
arg [-plugin-opt=-pass-through=-lc] ==> ignore arg [-plugin-opt=-pass-through=-lc] ==> ignore
@@ -173,7 +179,7 @@ Parsed C implicit link information from above output:
arg [/lib64/ld-linux-x86-64.so.2] ==> ignore arg [/lib64/ld-linux-x86-64.so.2] ==> ignore
arg [-pie] ==> ignore arg [-pie] ==> ignore
arg [-o] ==> ignore arg [-o] ==> ignore
arg [cmTC_f1f28] ==> ignore arg [cmTC_35bd2] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/10/../../../x86_64-linux-gnu/Scrt1.o] ==> ignore arg [/usr/lib/gcc/x86_64-linux-gnu/10/../../../x86_64-linux-gnu/Scrt1.o] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/10/../../../x86_64-linux-gnu/crti.o] ==> ignore arg [/usr/lib/gcc/x86_64-linux-gnu/10/../../../x86_64-linux-gnu/crti.o] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/10/crtbeginS.o] ==> ignore arg [/usr/lib/gcc/x86_64-linux-gnu/10/crtbeginS.o] ==> ignore
@@ -185,7 +191,7 @@ Parsed C implicit link information from above output:
arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] 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/../lib] ==> dir [/usr/lib/../lib]
arg [-L/usr/lib/gcc/x86_64-linux-gnu/10/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/10/../../..] arg [-L/usr/lib/gcc/x86_64-linux-gnu/10/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/10/../../..]
arg [CMakeFiles/cmTC_f1f28.dir/CMakeCCompilerABI.c.o] ==> ignore arg [CMakeFiles/cmTC_35bd2.dir/CMakeCCompilerABI.c.o] ==> ignore
arg [-lgcc] ==> lib [gcc] arg [-lgcc] ==> lib [gcc]
arg [--push-state] ==> ignore arg [--push-state] ==> ignore
arg [--as-needed] ==> ignore arg [--as-needed] ==> ignore

View File

@@ -63,10 +63,10 @@ RM = /usr/bin/cmake -E rm -f
EQUALS = = EQUALS = =
# The top-level source directory on which CMake was run. # The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd CMAKE_SOURCE_DIR = /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd
# The top-level build directory on which CMake was run. # The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug CMAKE_BINARY_DIR = /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug
#============================================================================= #=============================================================================
# Directory level rules for the build root directory # Directory level rules for the build root directory
@@ -93,14 +93,14 @@ clean: CMakeFiles/untitled.dir/clean
CMakeFiles/untitled.dir/all: CMakeFiles/untitled.dir/all:
$(MAKE) $(MAKESILENT) -f CMakeFiles/untitled.dir/build.make CMakeFiles/untitled.dir/depend $(MAKE) $(MAKESILENT) -f CMakeFiles/untitled.dir/build.make CMakeFiles/untitled.dir/depend
$(MAKE) $(MAKESILENT) -f CMakeFiles/untitled.dir/build.make CMakeFiles/untitled.dir/build $(MAKE) $(MAKESILENT) -f CMakeFiles/untitled.dir/build.make CMakeFiles/untitled.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles --progress-num=1,2,3,4,5,6 "Built target untitled" @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles --progress-num=1,2,3,4,5,6 "Built target untitled"
.PHONY : CMakeFiles/untitled.dir/all .PHONY : CMakeFiles/untitled.dir/all
# Build rule for subdir invocation for target. # Build rule for subdir invocation for target.
CMakeFiles/untitled.dir/rule: cmake_check_build_system CMakeFiles/untitled.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles 6 $(CMAKE_COMMAND) -E cmake_progress_start /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles 6
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/untitled.dir/all $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/untitled.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles 0 $(CMAKE_COMMAND) -E cmake_progress_start /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles 0
.PHONY : CMakeFiles/untitled.dir/rule .PHONY : CMakeFiles/untitled.dir/rule
# Convenience name for target. # Convenience name for target.

View File

@@ -1,3 +1,3 @@
/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles/edit_cache.dir /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles/edit_cache.dir
/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles/rebuild_cache.dir /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles/rebuild_cache.dir
/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles/untitled.dir /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles/untitled.dir

View File

@@ -1,4 +1,4 @@
C:\Windows\system32\wsl.exe --distribution Debian --exec /bin/bash -c "export CMAKE_COLOR_DIAGNOSTICS=ON && export CLION_IDE=TRUE && export JETBRAINS_IDE=TRUE && cd /mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug && /usr/bin/cmake -DCMAKE_BUILD_TYPE=Debug -G 'CodeBlocks - Unix Makefiles' -S /mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd -B /mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug" C:\Windows\system32\wsl.exe --distribution Debian --exec /bin/bash -c "export CMAKE_COLOR_DIAGNOSTICS=ON && export CLION_IDE=TRUE && export JETBRAINS_IDE=TRUE && cd /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug && /usr/bin/cmake -DCMAKE_BUILD_TYPE=Debug -G 'CodeBlocks - Unix Makefiles' -S /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd -B /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug"
-- The C compiler identification is GNU 10.2.1 -- The C compiler identification is GNU 10.2.1
-- Detecting C compiler ABI info -- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done -- Detecting C compiler ABI info - done
@@ -7,4 +7,4 @@ C:\Windows\system32\wsl.exe --distribution Debian --exec /bin/bash -c "export CM
-- Detecting C compile features - done -- Detecting C compile features - done
-- Configuring done -- Configuring done
-- Generating done -- Generating done
-- Build files have been written to: /mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug -- Build files have been written to: /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug

View File

@@ -1,56 +0,0 @@
#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">])
#IncludeRegexScan: ^.*$
#IncludeRegexComplain: ^$
#IncludeRegexTransform:
/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/Filmotheque.c
stdio.h
-
string.h
-
stdlib.h
-
Movie.h
/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/Movie.h
Filmotheque.h
/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/Filmotheque.h
NodeTrie.h
/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/NodeTrie.h
List.h
/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/List.h
/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/Filmotheque.h
NodeTrie.h
/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/NodeTrie.h
stdbool.h
-
stdlib.h
-
stdio.h
-
/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/List.h
stdbool.h
-
stdlib.h
-
stdio.h
-
/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/Movie.h
/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/NodeTrie.h
List.h
/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/List.h
string.h
-
stdbool.h
-
stdlib.h
-
stdio.h
-

View File

@@ -4,11 +4,11 @@ set(CMAKE_DEPENDS_LANGUAGES
) )
# The set of files for implicit dependencies of each language: # The set of files for implicit dependencies of each language:
set(CMAKE_DEPENDS_CHECK_C set(CMAKE_DEPENDS_CHECK_C
"/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/Filmotheque.c" "/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles/untitled.dir/Filmotheque.c.o" "/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/Filmotheque.c" "/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles/untitled.dir/Filmotheque.c.o"
"/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/List.c" "/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles/untitled.dir/List.c.o" "/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/List.c" "/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles/untitled.dir/List.c.o"
"/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/Movie.c" "/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles/untitled.dir/Movie.c.o" "/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/Movie.c" "/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles/untitled.dir/Movie.c.o"
"/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/NodeTrie.c" "/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles/untitled.dir/NodeTrie.c.o" "/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/NodeTrie.c" "/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles/untitled.dir/NodeTrie.c.o"
"/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/main.c" "/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles/untitled.dir/main.c.o" "/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/main.c" "/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles/untitled.dir/main.c.o"
) )
set(CMAKE_C_COMPILER_ID "GNU") set(CMAKE_C_COMPILER_ID "GNU")

View File

@@ -62,10 +62,10 @@ RM = /usr/bin/cmake -E rm -f
EQUALS = = EQUALS = =
# The top-level source directory on which CMake was run. # The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd CMAKE_SOURCE_DIR = /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd
# The top-level build directory on which CMake was run. # The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug CMAKE_BINARY_DIR = /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug
# Include any dependencies generated for this target. # Include any dependencies generated for this target.
include CMakeFiles/untitled.dir/depend.make include CMakeFiles/untitled.dir/depend.make
@@ -78,68 +78,68 @@ include CMakeFiles/untitled.dir/flags.make
CMakeFiles/untitled.dir/Filmotheque.c.o: CMakeFiles/untitled.dir/flags.make CMakeFiles/untitled.dir/Filmotheque.c.o: CMakeFiles/untitled.dir/flags.make
CMakeFiles/untitled.dir/Filmotheque.c.o: ../Filmotheque.c CMakeFiles/untitled.dir/Filmotheque.c.o: ../Filmotheque.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object CMakeFiles/untitled.dir/Filmotheque.c.o" @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object CMakeFiles/untitled.dir/Filmotheque.c.o"
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/untitled.dir/Filmotheque.c.o -c /mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/Filmotheque.c /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/untitled.dir/Filmotheque.c.o -c /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/Filmotheque.c
CMakeFiles/untitled.dir/Filmotheque.c.i: cmake_force CMakeFiles/untitled.dir/Filmotheque.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/untitled.dir/Filmotheque.c.i" @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/untitled.dir/Filmotheque.c.i"
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/Filmotheque.c > CMakeFiles/untitled.dir/Filmotheque.c.i /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/Filmotheque.c > CMakeFiles/untitled.dir/Filmotheque.c.i
CMakeFiles/untitled.dir/Filmotheque.c.s: cmake_force CMakeFiles/untitled.dir/Filmotheque.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/untitled.dir/Filmotheque.c.s" @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/untitled.dir/Filmotheque.c.s"
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/Filmotheque.c -o CMakeFiles/untitled.dir/Filmotheque.c.s /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/Filmotheque.c -o CMakeFiles/untitled.dir/Filmotheque.c.s
CMakeFiles/untitled.dir/main.c.o: CMakeFiles/untitled.dir/flags.make CMakeFiles/untitled.dir/main.c.o: CMakeFiles/untitled.dir/flags.make
CMakeFiles/untitled.dir/main.c.o: ../main.c CMakeFiles/untitled.dir/main.c.o: ../main.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building C object CMakeFiles/untitled.dir/main.c.o" @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building C object CMakeFiles/untitled.dir/main.c.o"
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/untitled.dir/main.c.o -c /mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/main.c /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/untitled.dir/main.c.o -c /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/main.c
CMakeFiles/untitled.dir/main.c.i: cmake_force CMakeFiles/untitled.dir/main.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/untitled.dir/main.c.i" @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/untitled.dir/main.c.i"
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/main.c > CMakeFiles/untitled.dir/main.c.i /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/main.c > CMakeFiles/untitled.dir/main.c.i
CMakeFiles/untitled.dir/main.c.s: cmake_force CMakeFiles/untitled.dir/main.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/untitled.dir/main.c.s" @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/untitled.dir/main.c.s"
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/main.c -o CMakeFiles/untitled.dir/main.c.s /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/main.c -o CMakeFiles/untitled.dir/main.c.s
CMakeFiles/untitled.dir/Movie.c.o: CMakeFiles/untitled.dir/flags.make CMakeFiles/untitled.dir/Movie.c.o: CMakeFiles/untitled.dir/flags.make
CMakeFiles/untitled.dir/Movie.c.o: ../Movie.c CMakeFiles/untitled.dir/Movie.c.o: ../Movie.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building C object CMakeFiles/untitled.dir/Movie.c.o" @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building C object CMakeFiles/untitled.dir/Movie.c.o"
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/untitled.dir/Movie.c.o -c /mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/Movie.c /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/untitled.dir/Movie.c.o -c /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/Movie.c
CMakeFiles/untitled.dir/Movie.c.i: cmake_force CMakeFiles/untitled.dir/Movie.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/untitled.dir/Movie.c.i" @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/untitled.dir/Movie.c.i"
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/Movie.c > CMakeFiles/untitled.dir/Movie.c.i /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/Movie.c > CMakeFiles/untitled.dir/Movie.c.i
CMakeFiles/untitled.dir/Movie.c.s: cmake_force CMakeFiles/untitled.dir/Movie.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/untitled.dir/Movie.c.s" @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/untitled.dir/Movie.c.s"
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/Movie.c -o CMakeFiles/untitled.dir/Movie.c.s /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/Movie.c -o CMakeFiles/untitled.dir/Movie.c.s
CMakeFiles/untitled.dir/NodeTrie.c.o: CMakeFiles/untitled.dir/flags.make CMakeFiles/untitled.dir/NodeTrie.c.o: CMakeFiles/untitled.dir/flags.make
CMakeFiles/untitled.dir/NodeTrie.c.o: ../NodeTrie.c CMakeFiles/untitled.dir/NodeTrie.c.o: ../NodeTrie.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building C object CMakeFiles/untitled.dir/NodeTrie.c.o" @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building C object CMakeFiles/untitled.dir/NodeTrie.c.o"
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/untitled.dir/NodeTrie.c.o -c /mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/NodeTrie.c /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/untitled.dir/NodeTrie.c.o -c /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/NodeTrie.c
CMakeFiles/untitled.dir/NodeTrie.c.i: cmake_force CMakeFiles/untitled.dir/NodeTrie.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/untitled.dir/NodeTrie.c.i" @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/untitled.dir/NodeTrie.c.i"
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/NodeTrie.c > CMakeFiles/untitled.dir/NodeTrie.c.i /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/NodeTrie.c > CMakeFiles/untitled.dir/NodeTrie.c.i
CMakeFiles/untitled.dir/NodeTrie.c.s: cmake_force CMakeFiles/untitled.dir/NodeTrie.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/untitled.dir/NodeTrie.c.s" @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/untitled.dir/NodeTrie.c.s"
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/NodeTrie.c -o CMakeFiles/untitled.dir/NodeTrie.c.s /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/NodeTrie.c -o CMakeFiles/untitled.dir/NodeTrie.c.s
CMakeFiles/untitled.dir/List.c.o: CMakeFiles/untitled.dir/flags.make CMakeFiles/untitled.dir/List.c.o: CMakeFiles/untitled.dir/flags.make
CMakeFiles/untitled.dir/List.c.o: ../List.c CMakeFiles/untitled.dir/List.c.o: ../List.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Building C object CMakeFiles/untitled.dir/List.c.o" @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Building C object CMakeFiles/untitled.dir/List.c.o"
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/untitled.dir/List.c.o -c /mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/List.c /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/untitled.dir/List.c.o -c /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/List.c
CMakeFiles/untitled.dir/List.c.i: cmake_force CMakeFiles/untitled.dir/List.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/untitled.dir/List.c.i" @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/untitled.dir/List.c.i"
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/List.c > CMakeFiles/untitled.dir/List.c.i /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/List.c > CMakeFiles/untitled.dir/List.c.i
CMakeFiles/untitled.dir/List.c.s: cmake_force CMakeFiles/untitled.dir/List.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/untitled.dir/List.c.s" @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/untitled.dir/List.c.s"
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/List.c -o CMakeFiles/untitled.dir/List.c.s /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/List.c -o CMakeFiles/untitled.dir/List.c.s
# Object files for target untitled # Object files for target untitled
untitled_OBJECTS = \ untitled_OBJECTS = \
@@ -159,7 +159,7 @@ untitled: CMakeFiles/untitled.dir/NodeTrie.c.o
untitled: CMakeFiles/untitled.dir/List.c.o untitled: CMakeFiles/untitled.dir/List.c.o
untitled: CMakeFiles/untitled.dir/build.make untitled: CMakeFiles/untitled.dir/build.make
untitled: CMakeFiles/untitled.dir/link.txt untitled: CMakeFiles/untitled.dir/link.txt
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Linking C executable untitled" @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Linking C executable untitled"
$(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/untitled.dir/link.txt --verbose=$(VERBOSE) $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/untitled.dir/link.txt --verbose=$(VERBOSE)
# Rule to build all files generated by this target. # Rule to build all files generated by this target.
@@ -172,6 +172,6 @@ CMakeFiles/untitled.dir/clean:
.PHONY : CMakeFiles/untitled.dir/clean .PHONY : CMakeFiles/untitled.dir/clean
CMakeFiles/untitled.dir/depend: CMakeFiles/untitled.dir/depend:
cd /mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd /mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd /mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug /mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug /mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles/untitled.dir/DependInfo.cmake --color=$(COLOR) cd /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles/untitled.dir/DependInfo.cmake --color=$(COLOR)
.PHONY : CMakeFiles/untitled.dir/depend .PHONY : CMakeFiles/untitled.dir/depend

View File

@@ -1,26 +0,0 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.18
CMakeFiles/untitled.dir/Filmotheque.c.o
/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/Filmotheque.c
/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/Filmotheque.h
/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/List.h
/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/Movie.h
/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/NodeTrie.h
CMakeFiles/untitled.dir/List.c.o
/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/List.c
/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/List.h
/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/Movie.h
CMakeFiles/untitled.dir/Movie.c.o
/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/Movie.c
/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/Movie.h
CMakeFiles/untitled.dir/NodeTrie.c.o
/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/List.h
/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/NodeTrie.c
/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/NodeTrie.h
CMakeFiles/untitled.dir/main.c.o
/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/Filmotheque.h
/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/List.h
/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/Movie.h
/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/NodeTrie.h
/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/main.c

View File

@@ -1,26 +1,2 @@
# CMAKE generated file: DO NOT EDIT! # Empty dependencies file for untitled.
# Generated by "Unix Makefiles" Generator, CMake Version 3.18 # This may be replaced when dependencies are built.
CMakeFiles/untitled.dir/Filmotheque.c.o: ../Filmotheque.c
CMakeFiles/untitled.dir/Filmotheque.c.o: ../Filmotheque.h
CMakeFiles/untitled.dir/Filmotheque.c.o: ../List.h
CMakeFiles/untitled.dir/Filmotheque.c.o: ../Movie.h
CMakeFiles/untitled.dir/Filmotheque.c.o: ../NodeTrie.h
CMakeFiles/untitled.dir/List.c.o: ../List.c
CMakeFiles/untitled.dir/List.c.o: ../List.h
CMakeFiles/untitled.dir/List.c.o: ../Movie.h
CMakeFiles/untitled.dir/Movie.c.o: ../Movie.c
CMakeFiles/untitled.dir/Movie.c.o: ../Movie.h
CMakeFiles/untitled.dir/NodeTrie.c.o: ../List.h
CMakeFiles/untitled.dir/NodeTrie.c.o: ../NodeTrie.c
CMakeFiles/untitled.dir/NodeTrie.c.o: ../NodeTrie.h
CMakeFiles/untitled.dir/main.c.o: ../Filmotheque.h
CMakeFiles/untitled.dir/main.c.o: ../List.h
CMakeFiles/untitled.dir/main.c.o: ../Movie.h
CMakeFiles/untitled.dir/main.c.o: ../NodeTrie.h
CMakeFiles/untitled.dir/main.c.o: ../main.c

View File

@@ -67,10 +67,10 @@ RM = /usr/bin/cmake -E rm -f
EQUALS = = EQUALS = =
# The top-level source directory on which CMake was run. # The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd CMAKE_SOURCE_DIR = /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd
# The top-level build directory on which CMake was run. # The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug CMAKE_BINARY_DIR = /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug
#============================================================================= #=============================================================================
# Targets provided globally by CMake. # Targets provided globally by CMake.
@@ -99,9 +99,9 @@ rebuild_cache/fast: rebuild_cache
# The main all target # The main all target
all: cmake_check_build_system all: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles /mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug//CMakeFiles/progress.marks $(CMAKE_COMMAND) -E cmake_progress_start /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug//CMakeFiles/progress.marks
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all
$(CMAKE_COMMAND) -E cmake_progress_start /mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles 0 $(CMAKE_COMMAND) -E cmake_progress_start /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles 0
.PHONY : all .PHONY : all
# The main clean target # The main clean target

View File

@@ -1,3 +1,3 @@
Start testing: Jun 13 13:46 CEST Start testing: Jun 13 15:31 CEST
---------------------------------------------------------- ----------------------------------------------------------
End testing: Jun 13 13:46 CEST End testing: Jun 13 15:31 CEST

View File

@@ -1,4 +1,4 @@
# Install script for directory: /mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd # Install script for directory: /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd
# Set the install prefix # Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX) if(NOT DEFINED CMAKE_INSTALL_PREFIX)
@@ -50,5 +50,5 @@ endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}") "${CMAKE_INSTALL_MANIFEST_FILES}")
file(WRITE "/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug/${CMAKE_INSTALL_MANIFEST}" file(WRITE "/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/${CMAKE_INSTALL_MANIFEST}"
"${CMAKE_INSTALL_MANIFEST_CONTENT}") "${CMAKE_INSTALL_MANIFEST_CONTENT}")

Binary file not shown.

View File

@@ -8,38 +8,38 @@
<Option virtualFolders="CMake Files\;"/> <Option virtualFolders="CMake Files\;"/>
<Build> <Build>
<Target title="all"> <Target title="all">
<Option working_dir="/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug"/> <Option working_dir="/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug"/>
<Option type="4"/> <Option type="4"/>
<MakeCommands> <MakeCommands>
<Build command="/usr/bin/gmake -j16 -f &quot;/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug/Makefile&quot; VERBOSE=1 all"/> <Build command="/usr/bin/gmake -j16 -f &quot;/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/Makefile&quot; VERBOSE=1 all"/>
<CompileFile command="/usr/bin/gmake -j16 -f &quot;/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug/Makefile&quot; VERBOSE=1 &quot;$file&quot;"/> <CompileFile command="/usr/bin/gmake -j16 -f &quot;/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/Makefile&quot; VERBOSE=1 &quot;$file&quot;"/>
<Clean command="/usr/bin/gmake -j16 -f &quot;/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug/Makefile&quot; VERBOSE=1 clean"/> <Clean command="/usr/bin/gmake -j16 -f &quot;/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/Makefile&quot; VERBOSE=1 clean"/>
<DistClean command="/usr/bin/gmake -j16 -f &quot;/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug/Makefile&quot; VERBOSE=1 clean"/> <DistClean command="/usr/bin/gmake -j16 -f &quot;/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/Makefile&quot; VERBOSE=1 clean"/>
</MakeCommands> </MakeCommands>
</Target> </Target>
<Target title="edit_cache"> <Target title="edit_cache">
<Option working_dir="/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug"/> <Option working_dir="/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug"/>
<Option type="4"/> <Option type="4"/>
<MakeCommands> <MakeCommands>
<Build command="/usr/bin/gmake -j16 -f &quot;/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug/Makefile&quot; VERBOSE=1 edit_cache"/> <Build command="/usr/bin/gmake -j16 -f &quot;/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/Makefile&quot; VERBOSE=1 edit_cache"/>
<CompileFile command="/usr/bin/gmake -j16 -f &quot;/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug/Makefile&quot; VERBOSE=1 &quot;$file&quot;"/> <CompileFile command="/usr/bin/gmake -j16 -f &quot;/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/Makefile&quot; VERBOSE=1 &quot;$file&quot;"/>
<Clean command="/usr/bin/gmake -j16 -f &quot;/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug/Makefile&quot; VERBOSE=1 clean"/> <Clean command="/usr/bin/gmake -j16 -f &quot;/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/Makefile&quot; VERBOSE=1 clean"/>
<DistClean command="/usr/bin/gmake -j16 -f &quot;/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug/Makefile&quot; VERBOSE=1 clean"/> <DistClean command="/usr/bin/gmake -j16 -f &quot;/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/Makefile&quot; VERBOSE=1 clean"/>
</MakeCommands> </MakeCommands>
</Target> </Target>
<Target title="rebuild_cache"> <Target title="rebuild_cache">
<Option working_dir="/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug"/> <Option working_dir="/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug"/>
<Option type="4"/> <Option type="4"/>
<MakeCommands> <MakeCommands>
<Build command="/usr/bin/gmake -j16 -f &quot;/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug/Makefile&quot; VERBOSE=1 rebuild_cache"/> <Build command="/usr/bin/gmake -j16 -f &quot;/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/Makefile&quot; VERBOSE=1 rebuild_cache"/>
<CompileFile command="/usr/bin/gmake -j16 -f &quot;/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug/Makefile&quot; VERBOSE=1 &quot;$file&quot;"/> <CompileFile command="/usr/bin/gmake -j16 -f &quot;/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/Makefile&quot; VERBOSE=1 &quot;$file&quot;"/>
<Clean command="/usr/bin/gmake -j16 -f &quot;/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug/Makefile&quot; VERBOSE=1 clean"/> <Clean command="/usr/bin/gmake -j16 -f &quot;/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/Makefile&quot; VERBOSE=1 clean"/>
<DistClean command="/usr/bin/gmake -j16 -f &quot;/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug/Makefile&quot; VERBOSE=1 clean"/> <DistClean command="/usr/bin/gmake -j16 -f &quot;/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/Makefile&quot; VERBOSE=1 clean"/>
</MakeCommands> </MakeCommands>
</Target> </Target>
<Target title="untitled"> <Target title="untitled">
<Option output="/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug/untitled" prefix_auto="0" extension_auto="0"/> <Option output="/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/untitled" prefix_auto="0" extension_auto="0"/>
<Option working_dir="/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug"/> <Option working_dir="/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug"/>
<Option object_output="./"/> <Option object_output="./"/>
<Option type="1"/> <Option type="1"/>
<Option compiler="gcc"/> <Option compiler="gcc"/>
@@ -50,15 +50,15 @@
<Add directory="/usr/include"/> <Add directory="/usr/include"/>
</Compiler> </Compiler>
<MakeCommands> <MakeCommands>
<Build command="/usr/bin/gmake -j16 -f &quot;/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug/Makefile&quot; VERBOSE=1 untitled"/> <Build command="/usr/bin/gmake -j16 -f &quot;/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/Makefile&quot; VERBOSE=1 untitled"/>
<CompileFile command="/usr/bin/gmake -j16 -f &quot;/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug/Makefile&quot; VERBOSE=1 &quot;$file&quot;"/> <CompileFile command="/usr/bin/gmake -j16 -f &quot;/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/Makefile&quot; VERBOSE=1 &quot;$file&quot;"/>
<Clean command="/usr/bin/gmake -j16 -f &quot;/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug/Makefile&quot; VERBOSE=1 clean"/> <Clean command="/usr/bin/gmake -j16 -f &quot;/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/Makefile&quot; VERBOSE=1 clean"/>
<DistClean command="/usr/bin/gmake -j16 -f &quot;/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug/Makefile&quot; VERBOSE=1 clean"/> <DistClean command="/usr/bin/gmake -j16 -f &quot;/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/Makefile&quot; VERBOSE=1 clean"/>
</MakeCommands> </MakeCommands>
</Target> </Target>
<Target title="untitled/fast"> <Target title="untitled/fast">
<Option output="/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug/untitled" prefix_auto="0" extension_auto="0"/> <Option output="/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/untitled" prefix_auto="0" extension_auto="0"/>
<Option working_dir="/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug"/> <Option working_dir="/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug"/>
<Option object_output="./"/> <Option object_output="./"/>
<Option type="1"/> <Option type="1"/>
<Option compiler="gcc"/> <Option compiler="gcc"/>
@@ -69,41 +69,41 @@
<Add directory="/usr/include"/> <Add directory="/usr/include"/>
</Compiler> </Compiler>
<MakeCommands> <MakeCommands>
<Build command="/usr/bin/gmake -j16 -f &quot;/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug/Makefile&quot; VERBOSE=1 untitled/fast"/> <Build command="/usr/bin/gmake -j16 -f &quot;/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/Makefile&quot; VERBOSE=1 untitled/fast"/>
<CompileFile command="/usr/bin/gmake -j16 -f &quot;/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug/Makefile&quot; VERBOSE=1 &quot;$file&quot;"/> <CompileFile command="/usr/bin/gmake -j16 -f &quot;/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/Makefile&quot; VERBOSE=1 &quot;$file&quot;"/>
<Clean command="/usr/bin/gmake -j16 -f &quot;/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug/Makefile&quot; VERBOSE=1 clean"/> <Clean command="/usr/bin/gmake -j16 -f &quot;/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/Makefile&quot; VERBOSE=1 clean"/>
<DistClean command="/usr/bin/gmake -j16 -f &quot;/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/cmake-build-debug/Makefile&quot; VERBOSE=1 clean"/> <DistClean command="/usr/bin/gmake -j16 -f &quot;/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/Makefile&quot; VERBOSE=1 clean"/>
</MakeCommands> </MakeCommands>
</Target> </Target>
</Build> </Build>
<Unit filename="/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/Filmotheque.c"> <Unit filename="/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/Filmotheque.c">
<Option target="untitled"/> <Option target="untitled"/>
</Unit> </Unit>
<Unit filename="/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/Filmotheque.h"> <Unit filename="/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/Filmotheque.h">
<Option target="untitled"/> <Option target="untitled"/>
</Unit> </Unit>
<Unit filename="/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/List.c"> <Unit filename="/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/List.c">
<Option target="untitled"/> <Option target="untitled"/>
</Unit> </Unit>
<Unit filename="/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/List.h"> <Unit filename="/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/List.h">
<Option target="untitled"/> <Option target="untitled"/>
</Unit> </Unit>
<Unit filename="/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/Movie.c"> <Unit filename="/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/Movie.c">
<Option target="untitled"/> <Option target="untitled"/>
</Unit> </Unit>
<Unit filename="/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/Movie.h"> <Unit filename="/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/Movie.h">
<Option target="untitled"/> <Option target="untitled"/>
</Unit> </Unit>
<Unit filename="/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/NodeTrie.c"> <Unit filename="/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/NodeTrie.c">
<Option target="untitled"/> <Option target="untitled"/>
</Unit> </Unit>
<Unit filename="/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/NodeTrie.h"> <Unit filename="/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/NodeTrie.h">
<Option target="untitled"/> <Option target="untitled"/>
</Unit> </Unit>
<Unit filename="/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/main.c"> <Unit filename="/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/main.c">
<Option target="untitled"/> <Option target="untitled"/>
</Unit> </Unit>
<Unit filename="/mnt/c/Users/BreizhHardware/Nextcloud/Programation/C/Isen/ProjetFin/BackEnd/CMakeLists.txt"> <Unit filename="/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/CMakeLists.txt">
<Option virtualFolder="CMake Files\"/> <Option virtualFolder="CMake Files\"/>
</Unit> </Unit>
</Project> </Project>

View File

@@ -3,40 +3,46 @@
#include "Filmotheque.h" #include "Filmotheque.h"
#include "List.h" #include "List.h"
#include "Movie.h" #include "Movie.h"
#include <time.h>
int main(){ int main() {
int stop = 0;
char* fichier = "../BD_small.txt"; char *fichier = "BD_big.txt";
//Create a table of list named tableau //Create a table of list named tableau
struct List* tableau[LENGTH]; struct List *tableau[LENGTH];
for(int i = 0; i < LENGTH; i++){ for (int i = 0; i < LENGTH; i++) {
tableau[i] = NULL; tableau[i] = NULL;
} }
struct Filmotheque *filmo = createEmptyFilmo();
struct Filmotheque* filmo = createEmptyFilmo();
//Create the filmotheque with the file BD_small.txt //Create the filmotheque with the file BD_small.txt
createTable(fichier,tableau,filmo); initFilmo(fichier, tableau, filmo);
while (stop != 8) {
FILE *verif;
verif = fopen("requests.txt", "r");
if (verif != NULL) {
printf("Verif passed");
char *request = "requests.txt";
stop = readRequest(request, tableau, filmo);
}
}
return 0;
}
/*
struct List* result = searchByDirector(filmo,"allen"); struct List* result = searchByDirector(filmo,"allen");
printList(result); printList(result);
printf("\n-------------------------------------------------------\n"); printf("\n-------------------------------------------------------\n");
clock_t start;
start = clock();
struct List* result2 = searchByTime(tableau,"94"); struct List* result2 = searchByTime(tableau,"94");
start = clock() - start;
double time_taken = ((double)start)/CLOCKS_PER_SEC;
printList(result2); printList(result2);
printResultInFile(result2,time_taken);
/*
printf("\n-------------------------------------------------------\n"); printf("\n-------------------------------------------------------\n");
struct List* result3 = searchByCategory(tableau,"Action"); struct List* result3 = searchByCategory(tableau,"Action");
printList(result3); printList(result3);
printf("\n-------------------------------------------------------\n"); printf("\n-------------------------------------------------------\n");
struct List* result4 = searchByFilm(tableau,"The"); struct List* result4 = searchByFilm(tableau,"the");
printList(result4); printList(result4);
*/
return 0;
}

View File

View File

@@ -1,22 +0,0 @@
Dayton;A Timepiece Spoke;323;Mystery
Dayton;Eater's Three Train;199;Western
Dayton;Plagues and Spaces ;126;Animation
Dayton;Affair Key;339;Adventure
Dayton;The Revealing Patch;301;Animation
Dayton;Children's Darkness Floor;230;Documentary
Dayton;The Closed Gallows;366;Parody
Dayton;Place's Slab;166;Musical
Dayton;The Wolfhound and the Fate;205;Western
Dayton;Humanborn;129;Animation
Dayton;The PreyBullet;188;Suspense
Dayton;Oona, the West Amulet;256;War
Dayton;Lovecraft, the Wrath Door;174;Disaster
Dayton;Patrol and a God;219;Animation
Dayton;A Thunder Had;340;Thriller
Dayton;Chain and the Eternal Water;141;Drama
Dayton;After the Engine and the People;330;Science Fiction
Dayton;Bus and the Damned Rat;148;Fantasy
Dayton;The Fangs's Cell;181;Action
Dayton;In the Empire;280;Animation
Dayton;Infernoborn;83;Thriller
Dayton;Into the Undead Blonde;164;Western

BIN
BackEnd/testFinal Normal file

Binary file not shown.