update: now it builds correctly

This commit is contained in:
maix0 2024-10-06 14:42:05 +02:00
parent 7efe3bc830
commit 8242d8eaaf
2 changed files with 3 additions and 4 deletions

View file

@ -6,15 +6,13 @@
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/10/06 14:25:20 by maiboyer #+# #+# */
/* Updated: 2024/10/06 14:27:40 by maiboyer ### ########.fr */
/* Updated: 2024/10/06 14:41:51 by maiboyer ### ########.fr */
/* */
/* ************************************************************************** */
#include "me/os/os.h"
#include "me/types.h"
#define BONUS 1
#if BONUS
t_pid get_self_pid(void)
{

View file

@ -47,7 +47,8 @@ for line in dump_binary.stdout.split('\n'):
if (len (words) >= 8 and words[3] == 'FUNC'):
symbols_binary.add(words[7])
diff = list(symbols_archive - symbols_binary)
#diff = list(symbols_archive - symbols_binary)
diff = list(symbols_binary - symbols_archive)
diff.sort()
for sym in diff:
print(f"{sym}")